CData Cloud offers access to Salesforce across several standard services and protocols, in a cloud-hosted solution. Any application that can connect to a SQL Server database can connect to Salesforce through CData Cloud.
CData Cloud allows you to standardize and configure connections to Salesforce as though it were any other OData endpoint or standard SQL Server.
This page provides a guide to Establishing a Connection to Salesforce in CData Cloud, as well as information on the available resources, and a reference to the available connection properties.
Establishing a Connection shows how to authenticate to Salesforce and configure any necessary connection properties to create a database in CData Cloud
Accessing data from Salesforce through the available standard services and CData Cloud administration is documented in further details in the CData Cloud Documentation.
Connect to Salesforce by selecting the corresponding icon in the Database tab. Required properties are listed under Settings. The Advanced tab lists connection properties that are not typically required.
To use a Salesforce sandbox account, set UseSandbox to true and be sure to specify a sandbox username in User.
To eliminate the need for a security token:
If you want to connect without using a security token, you must disable the security token as follows:
To connect via OAuth from all authentication flows, you must set AuthScheme to OAuth.
The following subsections describe how to authenticate to Salesforce from the available OAuth flows. For information about how to create a custom OAuth application, and why you might want to create one even for auth flows that already have embedded OAuth credentials, see Creating a Custom OAuth Application.
For a complete list of connection string properties available in Salesforce, see Connection.
Note: If you have enabled Session Settings > Lock sessions to the IP address from which they originated, make sure that your IP address does not change while using the Cloud. If the IP changes during the usage of the Cloud, an "INVALID_SESSION_ID" error is returned from Salesforce and the Cloud will no longer be able to retrieve data. If you receive this error, ask your Salesforce administrator to disable this configuration or make sure to configure a static IP for the instance where you are using the Cloud. Then, reset the connection to continue using the Cloud.
Set the AuthScheme to OAuthJWT.
To obtain the OAuthJWT consumer key:
http://localhost:8019/src/oauthCallback.rstAfter creating your OAuth Application, set the following connection properties:
Note: This flow never issues a refresh token.
Set the AuthScheme to AzureAD. Use the following connection properties to connect to AzureAD:
Note that this configuration requires two AAD applications: the "Salesforce" application used for single sign-on, and a separate "connector" application with user_impersonation permission on the "Salesforce" application. You must also specify the OAuth connection properties:
Use the following SSOProperties to authenticate to AzureAD:
The following is an example connection string:
AuthScheme=AzureAD;InitiateOAuth=GETANDREFRESH;OAuthClientId=3ea1c786-d527-4399-8c3b-2e3696ae4b48;OauthClientSecret=xxx;SSOProperties='Resource=https://example.my.salesforce.com;AzureTenant=6ee709df-9de0-4cdf-10e6b7a51d95';
Set the AuthScheme to Okta. Use the following connection properties to connect to Okta:
Example connection string:
AuthScheme=OKTA;User=OktaUserName;Password=OktaPassword;SSOLoginURL='https://subdomain.okta.com/app/salesforce/app/sso/saml';SSOExchangeURL='https://subdomain.my.salesforce.com/services/oauth2/token';
Set the AuthScheme to OneLogin. Use the following connection properties to connect to OneLogin:
Example connection string:
AuthScheme=OneLogin;User=OneLoginUserName;Password=OneLoginPassword;SSOProperties='OAuthClientID=3fc8394584f153ce3b7924d9cd4f686443a52b;OAuthClientSecret=ca9257fd5cc3277abb5818cea28c06fe9b3b285d73d06;Subdomain=OneLoginSubDomain;AppId=1433920';
Set the AuthScheme to PingFederate. The following connection properties need to be set:
AuthScheme=PingFederate;User=pingFederateUser;Password=pingFederatePassword;SSOLoginURL='https://<authority>/idp/sts.wst';SSOExchangeUrl='https://domain.my.salesforce.com/services/oauth2/token?so=00D3000006JDF';
Set the AuthScheme to ADFS and set these properties:
You need the following SSOProperties to authenticate to ADFS:
AuthScheme=ADFS;User=username;Password=password;SSOLoginURL='https://sts.company.com';SSOProperties='RelyingParty=https://saml.salesforce.com';
The ADFS Integrated flow indicates you are connecting with the currently logged in Windows user credentials. To use the ADFS Integrated flow, do not specify the User and Password, but otherwise follow the same steps in the ADFS guide above.
These permissions are defined by access scopes, which determine what data your application can access and what actions it can perform.
This topic provides information about the required access scopes and endpoint domains for the Salesforce Cloud.
Scopes are a way to limit an application's access to a user's data. They define the specific actions that an application can perform on behalf of the user.
For example, a read-only scope might allow an application to view data, while a full access scope might allow it to modify data.
| Scope | Description |
| full | Allows access to all data accessible by the logged-in user, and encompasses all other scopes. Required for write access. |
| api | Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API 2.0. This scope also includes chatter_api, which allows access to Connect REST API resources. Required for read access. |
| chatter_api | Allows access to Connect REST API resources on behalf of the user. |
| refresh_token | Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. Required for read access. |
| id | Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id because they’re synonymous. Required for read access. |
| visualforce | Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. |
| web | Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. Required for read access. |
Endpoint domains are the specific URLs that the application needs to communicate with in order to authenticate, retrieve records, and perform other essential operations.
Allowlisting these domains ensures that the network traffic between your application and the API is not blocked by firewalls or security settings.
Note: Most users do not need to make any special configurations. Allowlisting is typically only necessary for environments with strict security measures, such as restricted outbound network traffic.
| Domain | Always Required | Description |
| test.salesforce.com | FALSE | The subdomain used to access sandbox instances of Salesforce. |
| <Site>.my.salesforce.com | TRUE | The domain of your Salesforce site. |
| <LoginURL> | FALSE | The login URL specified in LoginURL. The default value is login.salesforce.com. |
| <SSOLoginURL> | FALSE | The login URL of your SSO provider. Required when AuthScheme is set to OKTA, PingFederate, or ADFS. |
| <Subdomain>.onelogin.com | FALSE | The subdomain of onelogin.com specified in SSOProperties. Required if AuthScheme is set to OKTA. |
| <SSOExchangeURL> | FALSE | Your SSO Exchange URL. Required when AuthScheme is set to OKTA, PingFederate, ADFS, OneLogin, or AzureAD. |
| <Resource> | FALSE | The Azure AD resource URL specified in SSOProperties. Required when AuthScheme is set to AzureAD. |
| <RelyingParty> | FALSE | The URI of your ADFS relying party, specified in SSOProperties. Required when AuthScheme is set to ADFS. |
By default, the Cloud attempts to negotiate TLS with the server. The server certificate is validated against the default system trusted certificate store. You can override how the certificate gets validated using the SSLServerCert connection property.
To specify another certificate, see the SSLServerCert connection property.
To authenticate to an HTTP proxy, set the following:
Set the following properties:
The CData Cloud models Salesforce data as an easy-to-use SQL database. There are three parts to the data model: tables, views, and stored procedures. The data model of the Cloud is dynamic. This means that, when you connect using the Cloud, any changes you make in the Salesforce UI, such as adding a new table, adding new columns, or changing a column's data type, are automatically included in the Cloud schema.
The Tables section, which details standard SQL tables, and the Views section, which lists read-only SQL tables, contain samples of what you might have access to in your Salesforce account. The table definitions are dynamically retrieved; here, we show the sample table definitions that are included in the Salesforce.com development environment.
Common tables include:
| Table | Description |
| Account | Contains details about customer accounts, including business or individual information and related activities. |
| Contact | Holds details about individuals associated with accounts, tracking communication and relationships.x |
| Lead | Tracks potential customers or business opportunities before they are converted into accounts and contacts. |
| Opportunity | Tracks potential revenue-generating sales deals, managing the sales pipeline. |
| Case | Manages customer service and support cases, tracking issues, resolutions, and customer interactions. |
| User | Stores details about Salesforce users, including login credentials, profiles, and roles. |
| Task | Represents user tasks, such as follow-ups and reminders, that track activities within Salesforce. |
| Event | Stores scheduled meetings, appointments, and calendar events associated with users or records. |
| Campaign | Tracks marketing campaigns, including outreach activities and associated leads, contacts, and opportunities. |
| CampaignMember | Links leads and contacts to campaigns, tracking participation and response details. |
| OpportunityLineItem | Represents products or services associated with an opportunity, tracking pricing and quantities. |
| Pricebook2 | Stores price books that define different pricing structures for products and services. |
| Product2 | Stores product catalog information, including details about goods and services offered by a company. |
| CaseComment | Stores comments added by support agents or customers to case records. |
| Attachment | Stores file attachments related to various Salesforce records, such as accounts, opportunities, or cases. |
| Report | Stores metadata for reports, defining data queries and visualization settings. |
| RecordType | Defines different record types within an object, allowing for customized page layouts and processes. |
| Profile | Defines user profiles, specifying access permissions and security settings for different roles. |
| Dashboard | Stores metadata for Salesforce dashboards, which provide visual reports and key performance metrics. |
| FeedItem | Represents Chatter posts, including status updates, file shares, and record interactions. |
Polymorphic Fields explains how to work with related objects as different types of objects.
The Cloud maps types from the data source to the corresponding data type available in the schema. The following table documents these mappings.
| Salesforce UI | Salesforce API Type | CData Schema |
| Auto Number | string | string |
| Lookup Relationship | ID | string |
| Master-Detail Relationship | ID | string |
| External Lookup Relationship | ID | string |
| Checkbox | boolean | bool |
| Currency | double | float |
| Date | date | date |
| Date/Time | datetime | datetime |
| string | string | |
| Geolocation | Location* | string |
| Number | double | float |
| Percent | double | float |
| Phone | string | string |
| Picklist | string | string |
| Picklist (Multi-Select) | string | string |
| Text | string | string |
| Text Area | string | string |
| Text Area (Long) | string | string |
| Text Area (Rich) | string | string |
| Text (Encrypted) | string | string |
| Time | time | time |
| URL | string | string |
A polymorphic field is one where the related object might be one of several different types of objects. For example, the WhoID field of a Task can be a Contact or a Lead. To find out if a field is polymorphic, you can query the sys_tablecolumns and check the IsPolymorphic column. There are two pseudo columns related to each polymorphic field:
The pseudo columns are used to efficiently work with polymorphic fields.
SELECT * FROM Task WHERE OwnerIDType = 'User'For INSERT/UPDATE/UPSERT statements, the polymorphic fields can be used directly, or instead of having to look up the ID of a specific object type, the {PolymorphicField}ExternalID can be used. For example, when trying to update the WhoID of a task, instead of having to find the ID which belongs to a specific Contact, a contact external ID field can be used as a reference. Let's say the contact has an external ID "ContactEmail__c". Instead of using:
SELECT ID FROM Contact WHERE ContactEmail__c = '[email protected]' UPDATE Task SET WhoID = ID from first queryThe following can be executed:
UPDATE Task SET WhoID='[email protected]', WhoIDType='Contact', WhoIDExternalID = 'ContactEmail__c'This tells the service to set the WhoID value for this task to whichever contact ID has the external ID ContactEmail__c equals to [email protected]. The same applies to INSERT & UPSERT statements.
To access reports with the driver, set IncludeReports to true.
To get a list of the available reports, run:
SELECT * FROM sys_tables WHERE IsReport='true'
Salesforce limits the number of rows allowed in a single report to no more than 2,000 rows. To ensure that all your data is retrieved properly, we recommend that you use filters to create reports that are narrowed down to a specific view. A limited report is more likely to fit within the row limit.
For these report types, the driver does not currently support the Preview feature (Detailed rows = ON). However, the driver does expose a report summary with groupings, summary formulas, and record counts as a view. To get the detailed information, you can clone this report and remove the groupings. This turns the view into a tabular report.
SELECT * FROM Report_Accounts_With_Contacts SELECT Max(AnnualRevenue) FROM Report_Accounts_With_Contacts
The Cloud models the data in Salesforce as a list of tables in a relational database that can be queried using standard SQL statements.
| Name | Description |
| Account | Contains details about customer accounts, including business or individual information and related activities. |
| AccountCleanInfo | Schema file for AccountCleanInfo. |
| AccountContactRole | Tracks the roles that contacts play within accounts, helping to define relationships in Salesforce. |
| AccountFeed | Captures Chatter feed updates, including posts, comments, and interactions related to Account records. |
| AccountPartner | Stores partner relationships associated with accounts, helping to track business partnerships. |
| AccountShare | Controls access and sharing settings for Account records, defining who can view or edit them. |
| ActionLinkGroupTemplate | Schema file for ActionLinkGroupTemplate. |
| ActionLinkTemplate | Schema file for ActionLinkTemplate. |
| ActivityFieldHistory | Schema file for ActivityFieldHistory. |
| AdditionalNumber | Holds additional phone numbers associated with various Salesforce entities, such as contacts or accounts. |
| AIRecordInsight | Schema file for AIRecordInsight. |
| AITrustAttribute | Schema file for AITrustAttribute. |
| AITrustAttrSetup | Schema file for AITrustAttrSetup. |
| AlternativePaymentMethod | Schema file for AlternativePaymentMethod. |
| AlternativePaymentMethodShare | Schema file for AlternativePaymentMethodShare. |
| AnalyticsUserAttrFuncTkn | Schema file for AnalyticsUserAttrFuncTkn. |
| AnalyticsUserAttrFuncTknShare | Schema file for AnalyticsUserAttrFuncTknShare. |
| AnalyticsVisualization | Schema file for AnalyticsVisualization. |
| AnalyticsVizField | Schema file for AnalyticsVizField. |
| AnalyticsVizViewDef | Schema file for AnalyticsVizViewDef. |
| Announcement | Schema file for Announcement. |
| ApexClass | Stores metadata for Apex classes, which define server-side business logic and custom functionality. |
| ApexComponent | Contains metadata for Visualforce components that can be reused in multiple Visualforce pages. |
| ApexEmailNotification | Schema file for ApexEmailNotification. |
| ApexLog | Records execution logs for Apex transactions, debugging, and performance monitoring in Salesforce. |
| ApexPage | Stores metadata for Visualforce pages, which define custom user interfaces in Salesforce. |
| ApexTestQueueItem | Tracks Apex test executions in the asynchronous test queue, helping developers manage test runs. |
| ApexTestResult | Stores the results of Apex test executions, including success, failure, and error messages. |
| ApexTestResultLimits | Schema file for ApexTestResultLimits. |
| ApexTestRunResult | Schema file for ApexTestRunResult. |
| ApexTestSuite | Schema file for ApexTestSuite. |
| ApexTrigger | Contains metadata for Apex triggers, which automate processes by executing logic when records change. |
| ApiAnomalyEventStoreFeed | Schema file for ApiAnomalyEventStoreFeed. |
| AppAnalyticsQueryRequest | Schema file for AppAnalyticsQueryRequest. |
| AppMenuItem | Defines custom items that appear in the Salesforce app menu, allowing navigation to apps or links. |
| Approval | Represents approval process instances, tracking workflow approvals and their status in Salesforce. |
| ApprovalSubmissionShare | Schema file for ApprovalSubmissionShare. |
| AppUsageAssignment | Schema file for AppUsageAssignment. |
| Asset | Manages customer-owned products, including warranty and support details, for asset tracking. |
| AssetFeed | Logs Chatter activity, including posts and updates, related to Asset records. |
| AssetRelationship | Schema file for AssetRelationship. |
| AssetRelationshipFeed | Schema file for AssetRelationshipFeed. |
| AssetShare | Schema file for AssetShare. |
| AssociatedLocation | Schema file for AssociatedLocation. |
| AsyncOperationLog | Schema file for AsyncOperationLog. |
| Attachment | Stores file attachments related to various Salesforce records, such as accounts, opportunities, or cases. |
| AuraDefinition | Schema file for AuraDefinition. |
| AuraDefinitionBundle | Schema file for AuraDefinitionBundle. |
| AuthConfigProviders | Schema file for AuthConfigProviders. |
| AuthorizationForm | Schema file for AuthorizationForm. |
| AuthorizationFormConsent | Schema file for AuthorizationFormConsent. |
| AuthorizationFormConsentShare | Schema file for AuthorizationFormConsentShare. |
| AuthorizationFormDataUse | Schema file for AuthorizationFormDataUse. |
| AuthorizationFormDataUseShare | Schema file for AuthorizationFormDataUseShare. |
| AuthorizationFormShare | Schema file for AuthorizationFormShare. |
| AuthorizationFormText | Schema file for AuthorizationFormText. |
| AuthorizationFormTextFeed | Schema file for AuthorizationFormTextFeed. |
| AuthProvider | Contains settings for authentication providers, allowing integration with third-party login systems. |
| AuthProvParamFwdAllowlist | Schema file for AuthProvParamFwdAllowlist. |
| AuthSession | Tracks login sessions and authentication details for Salesforce users. |
| BrandingSet | Schema file for BrandingSet. |
| BrandingSetProperty | Schema file for BrandingSetProperty. |
| BrandTemplate | Stores branding elements and templates for customizing the appearance of Salesforce communities and emails. |
| BriefcaseAssignment | Schema file for BriefcaseAssignment. |
| BrowserPolicyViolation | Schema file for BrowserPolicyViolation. |
| BusinessBrand | Schema file for BusinessBrand. |
| BusinessBrandShare | Schema file for BusinessBrandShare. |
| BusinessHours | Defines business hours used in case escalation rules, Service-level Agreement (SLA) calculations, and time-based workflows. |
| BusinessProcess | Represents a business process, such as lead or case management, defining different record paths. |
| CalendarView | Schema file for CalendarView. |
| CalendarViewShare | Schema file for CalendarViewShare. |
| CallCenter | Contains metadata for call center configurations, integrating Salesforce with telephony systems. |
| CallCoachingMediaProvider | Schema file for CallCoachingMediaProvider. |
| CampaignFeed | Captures Chatter posts and activity updates related to Campaign records. |
| CampaignMember | Links leads and contacts to campaigns, tracking participation and response details. |
| CampaignShare | Controls sharing settings for Campaign records, defining access levels for users and groups. |
| CardPaymentMethod | Schema file for CardPaymentMethod. |
| Case | Manages customer service and support cases, tracking issues, resolutions, and customer interactions. |
| CaseComment | Stores comments added by support agents or customers to case records. |
| CaseContactRole | Defines the relationship between a contact and a case, specifying their role in the case process. |
| CaseFeed | Captures Chatter activity, including posts and updates, related to case records. |
| CaseMilestone | Schema file for CaseMilestone. |
| CaseShare | Controls sharing settings for case records, defining user access levels. |
| CaseSolution | Links solutions to cases, helping support agents provide quick resolutions to customer issues. |
| CaseTeamMember | Stores details about team members assigned to work on a case record. |
| CaseTeamRole | Defines roles assigned to team members working on case records, such as Support Rep or Manager. |
| CaseTeamTemplate | Manages predefined templates for case teams, allowing standardized team assignments. |
| CaseTeamTemplateMember | Stores members of a case Team Template, defining their roles and permissions. |
| CaseTeamTemplateRecord | Links Case Team Templates to specific case records, applying predefined team structures. |
| CategoryData | Stores structured data related to categories used in Salesforce Knowledge or other categorization features. |
| CategoryNode | Represents hierarchical category structures used for organizing knowledge articles and content. |
| ChatterExtension | Schema file for ChatterExtension. |
| ChatterExtensionConfig | Schema file for ChatterExtensionConfig. |
| ClientBrowser | Identifies the browser used to access Salesforce, useful for tracking user activity and compatibility. |
| CollaborationGroup | Stores details about Chatter groups used for collaboration and discussion within Salesforce. |
| CollaborationGroupFeed | Captures Chatter activity, including posts and updates, related to Collaboration Groups. |
| CollaborationGroupMember | Manages group membership, listing users who belong to Chatter collaboration groups. |
| CollaborationGroupMemberRequest | Tracks pending requests to join Chatter groups requiring approval. |
| CollaborationGroupRecord | Schema file for CollaborationGroupRecord. |
| CollaborationInvitation | Manages invitations sent to external users to join Salesforce Chatter groups. |
| CollaborationRoom | Schema file for CollaborationRoom. |
| CommSubscription | Schema file for CommSubscription. |
| CommSubscriptionChannelType | Schema file for CommSubscriptionChannelType. |
| CommSubscriptionChannelTypeFeed | Schema file for CommSubscriptionChannelTypeFeed. |
| CommSubscriptionChannelTypeShare | Schema file for CommSubscriptionChannelTypeShare. |
| CommSubscriptionConsent | Schema file for CommSubscriptionConsent. |
| CommSubscriptionConsentFeed | Schema file for CommSubscriptionConsentFeed. |
| CommSubscriptionConsentShare | Schema file for CommSubscriptionConsentShare. |
| CommSubscriptionFeed | Schema file for CommSubscriptionFeed. |
| CommSubscriptionShare | Schema file for CommSubscriptionShare. |
| CommSubscriptionTiming | Schema file for CommSubscriptionTiming. |
| CommSubscriptionTimingFeed | Schema file for CommSubscriptionTimingFeed. |
| ConferenceNumber | Schema file for ConferenceNumber. |
| ConsumptionRate | Schema file for ConsumptionRate. |
| ConsumptionSchedule | Schema file for ConsumptionSchedule. |
| ConsumptionScheduleFeed | Schema file for ConsumptionScheduleFeed. |
| ConsumptionScheduleShare | Schema file for ConsumptionScheduleShare. |
| Contact | Holds details about individuals associated with accounts, tracking communication and relationships. |
| ContactCleanInfo | Schema file for ContactCleanInfo. |
| ContactFeed | Captures Chatter activity, including posts and updates, related to Contact records. |
| ContactPointAddress | Schema file for ContactPointAddress. |
| ContactPointAddressShare | Schema file for ContactPointAddressShare. |
| ContactPointConsent | Schema file for ContactPointConsent. |
| ContactPointConsentShare | Schema file for ContactPointConsentShare. |
| ContactPointEmail | Schema file for ContactPointEmail. |
| ContactPointEmailShare | Schema file for ContactPointEmailShare. |
| ContactPointPhone | Schema file for ContactPointPhone. |
| ContactPointPhoneShare | Schema file for ContactPointPhoneShare. |
| ContactPointTypeConsent | Schema file for ContactPointTypeConsent. |
| ContactPointTypeConsentShare | Schema file for ContactPointTypeConsentShare. |
| ContactRequest | Schema file for ContactRequest. |
| ContactRequestShare | Schema file for ContactRequestShare. |
| ContentAsset | Schema file for ContentAsset. |
| ContentDistribution | Schema file for ContentDistribution. |
| ContentDistributionView | Schema file for ContentDistributionView. |
| ContentDocument | Stores documents uploaded to Salesforce, such as files attached to records or stored in libraries. |
| ContentDocumentFeed | Captures Chatter activity, including posts and updates, related to Content Documents. |
| ContentDocumentLink | Links Content Documents to multiple records, allowing files to be associated with various objects. |
| ContentDocumentSubscription | Schema file for ContentDocumentSubscription. |
| ContentFolder | Schema file for ContentFolder. |
| ContentFolderMember | Schema file for ContentFolderMember. |
| ContentNote | Schema file for ContentNote. |
| ContentNotification | Schema file for ContentNotification. |
| ContentTagSubscription | Schema file for ContentTagSubscription. |
| ContentTaxonomy | Schema file for ContentTaxonomy. |
| ContentTaxonomyRelatedTerm | Schema file for ContentTaxonomyRelatedTerm. |
| ContentTaxonomyTerm | Schema file for ContentTaxonomyTerm. |
| ContentTaxonomyTermRelatedTerm | Schema file for ContentTaxonomyTermRelatedTerm. |
| ContentUserSubscription | Schema file for ContentUserSubscription. |
| ContentVersion | Tracks different versions of Content Documents, enabling version control for uploaded files. |
| ContentVersionComment | Schema file for ContentVersionComment. |
| ContentVersionRating | Schema file for ContentVersionRating. |
| ContentWorkspace | Schema file for ContentWorkspace. |
| ContentWorkspaceDoc | Schema file for ContentWorkspaceDoc. |
| ContentWorkspaceMember | Schema file for ContentWorkspaceMember. |
| ContentWorkspacePermission | Schema file for ContentWorkspacePermission. |
| ContentWorkspaceSubscription | Schema file for ContentWorkspaceSubscription. |
| Contract | Manages customer contracts, including agreement terms, statuses, and renewal details. |
| ContractContactRole | Defines the relationship between a contact and a contract, specifying their role in the agreement. |
| ContractFeed | Captures Chatter activity, including posts and updates, related to Contract records. |
| ContractLineItem | Schema file for ContractLineItem. |
| ContractLineItemFeed | Schema file for ContractLineItemFeed. |
| ConversationApiLog | Schema file for ConversationApiLog. |
| ConversationApiLogObjSum | Schema file for ConversationApiLogObjSum. |
| ConversationApiLogShare | Schema file for ConversationApiLogShare. |
| ConversationEntry | Schema file for ConversationEntry. |
| ConvIntelligenceSignalRule | Schema file for ConvIntelligenceSignalRule. |
| ConvIntelligenceSignalSubRule | Schema file for ConvIntelligenceSignalSubRule. |
| CorsWhitelistEntry | Schema file for CorsWhitelistEntry. |
| CredentialStuffingEventStoreFeed | Schema file for CredentialStuffingEventStoreFeed. |
| CreditMemo | Schema file for CreditMemo. |
| CreditMemoFeed | Schema file for CreditMemoFeed. |
| CreditMemoInvApplication | Schema file for CreditMemoInvApplication. |
| CreditMemoInvApplicationFeed | Schema file for CreditMemoInvApplicationFeed. |
| CreditMemoLine | Schema file for CreditMemoLine. |
| CreditMemoLineFeed | Schema file for CreditMemoLineFeed. |
| CreditMemoShare | Schema file for CreditMemoShare. |
| CspTrustedSite | Schema file for CspTrustedSite. |
| CurrencyType | Schema file for CurrencyType. |
| CustomBrand | Schema file for CustomBrand. |
| CustomBrandAsset | Schema file for CustomBrandAsset. |
| Customer | Schema file for Customer. |
| CustomerShare | Schema file for CustomerShare. |
| CustomHelpMenuItem | Schema file for CustomHelpMenuItem. |
| CustomHelpMenuSection | Schema file for CustomHelpMenuSection. |
| CustomNotificationType | Schema file for CustomNotificationType. |
| DandBCompany | Schema file for DandBCompany. |
| DashboardComponentFeed | Captures Chatter activity, including posts and updates, related to Dashboard Components. |
| DashboardFeed | Captures Chatter activity, including posts and updates, related to Dashboards. |
| DataAssetPromotionRequest | Schema file for DataAssetPromotionRequest. |
| DataEncryptionKey | Schema file for DataEncryptionKey. |
| DataMaskCustomValueLibrary | Schema file for DataMaskCustomValueLibrary. |
| DataMaskCustomValueLibraryShare | Schema file for DataMaskCustomValueLibraryShare. |
| DataUseLegalBasis | Schema file for DataUseLegalBasis. |
| DataUseLegalBasisShare | Schema file for DataUseLegalBasisShare. |
| DataUsePurpose | Schema file for DataUsePurpose. |
| DataUsePurposeShare | Schema file for DataUsePurposeShare. |
| DigitalWallet | Schema file for DigitalWallet. |
| Document | Stores documents and files uploaded to Salesforces legacy Document Library. |
| DocumentAttachmentMap | Maps attachments to documents, allowing files to be linked to different records. |
| DuplicateRecordItem | Schema file for DuplicateRecordItem. |
| DuplicateRecordSet | Schema file for DuplicateRecordSet. |
| EmailCapture | Schema file for EmailCapture. |
| EmailDomainFilter | Schema file for EmailDomainFilter. |
| EmailDomainKey | Schema file for EmailDomainKey. |
| EmailMessage | Schema file for EmailMessage. |
| EmailMessageRelation | Schema file for EmailMessageRelation. |
| EmailRelay | Schema file for EmailRelay. |
| EmailServicesAddress | Stores email addresses configured for Salesforce Email Services, enabling automated email processing. |
| EmailServicesFunction | Defines functions for handling inbound emails via Salesforce Email Services. |
| EmailTemplate | Manages email templates used for standardizing outbound email communication. |
| EngagementChannelType | Schema file for EngagementChannelType. |
| EngagementChannelTypeFeed | Schema file for EngagementChannelTypeFeed. |
| EngagementChannelTypeShare | Schema file for EngagementChannelTypeShare. |
| EngmtChannelTypeSettings | Schema file for EngmtChannelTypeSettings. |
| EnhancedLetterhead | Schema file for EnhancedLetterhead. |
| EnhancedLetterheadFeed | Schema file for EnhancedLetterheadFeed. |
| Entitlement | Schema file for Entitlement. |
| EntitlementContact | Schema file for EntitlementContact. |
| EntitlementFeed | Schema file for EntitlementFeed. |
| EntitlementTemplate | Schema file for EntitlementTemplate. |
| EntityMilestone | Schema file for EntityMilestone. |
| EntityMilestoneFeed | Schema file for EntityMilestoneFeed. |
| EntitySubscription | Tracks Chatter subscriptions, allowing users to follow records and receive updates. |
| Event | Stores scheduled meetings, appointments, and calendar events associated with users or records. |
| EventFeed | Captures Chatter activity, including posts and updates, related to Event records. |
| EventRelation | Manages relationships between events and related records, such as attendees and leads. |
| EvfPipelineSubTaskDetails | Schema file for EvfPipelineSubTaskDetails. |
| ExpressionFilter | Schema file for ExpressionFilter. |
| ExpressionFilterCriteria | Schema file for ExpressionFilterCriteria. |
| ExternalDataUserAuth | Schema file for ExternalDataUserAuth. |
| ExternalEncryptionRootKey | Schema file for ExternalEncryptionRootKey. |
| ExternalEvent | Schema file for ExternalEvent. |
| ExternalEventMapping | Schema file for ExternalEventMapping. |
| ExternalEventMappingShare | Schema file for ExternalEventMappingShare. |
| FeedAttachment | Schema file for FeedAttachment. |
| FeedComment | Stores comments added to Chatter posts across Salesforce records. |
| FeedItem | Represents Chatter posts, including status updates, file shares, and record interactions. |
| FieldPermissions | Defines field-level security settings, specifying user access permissions for individual fields. |
| FinanceBalanceSnapshot | Schema file for FinanceBalanceSnapshot. |
| FinanceBalanceSnapshotShare | Schema file for FinanceBalanceSnapshotShare. |
| FinanceTransaction | Schema file for FinanceTransaction. |
| FinanceTransactionShare | Schema file for FinanceTransactionShare. |
| FlowInterview | Schema file for FlowInterview. |
| FlowInterviewLogShare | Schema file for FlowInterviewLogShare. |
| FlowInterviewShare | Schema file for FlowInterviewShare. |
| FlowOrchestration | Schema file for FlowOrchestration. |
| FlowOrchestrationInstance | Schema file for FlowOrchestrationInstance. |
| FlowOrchestrationInstanceShare | Schema file for FlowOrchestrationInstanceShare. |
| FlowOrchestrationLog | Schema file for FlowOrchestrationLog. |
| FlowOrchestrationStageInstance | Schema file for FlowOrchestrationStageInstance. |
| FlowOrchestrationStageInstanceShare | Schema file for FlowOrchestrationStageInstanceShare. |
| FlowOrchestrationStepInstance | Schema file for FlowOrchestrationStepInstance. |
| FlowOrchestrationStepInstanceShare | Schema file for FlowOrchestrationStepInstanceShare. |
| FlowOrchestrationWorkItem | Schema file for FlowOrchestrationWorkItem. |
| FlowOrchestrationWorkItemShare | Schema file for FlowOrchestrationWorkItemShare. |
| FlowRecord | Schema file for FlowRecord. |
| FlowRecordRelation | Schema file for FlowRecordRelation. |
| FlowRecordShare | Schema file for FlowRecordShare. |
| FlowRecordVersion | Schema file for FlowRecordVersion. |
| FlowStageRelation | Schema file for FlowStageRelation. |
| FlowTestResultShare | Schema file for FlowTestResultShare. |
| Folder | Represents folders used for organizing reports, dashboards, and documents in Salesforce. |
| ForecastShare | Controls sharing settings for forecasting data, defining who can view or edit forecast records. |
| Group | Manages public and private groups used for collaboration and sharing within Salesforce. |
| GroupMember | Stores group membership details, listing users assigned to specific public or private groups. |
| GtwyProvPaymentMethodType | Schema file for GtwyProvPaymentMethodType. |
| GuestUserAnomalyEventStoreFeed | Schema file for GuestUserAnomalyEventStoreFeed. |
| HashtagDefinition | Tracks custom hashtags used in Chatter posts, allowing content to be categorized and searched. |
| Holiday | Stores company-wide holidays, which can be referenced in business hours and case escalation rules. |
| Idea | Schema file for Idea. |
| IdeaComment | Schema file for IdeaComment. |
| IframeWhiteListUrl | Schema file for IframeWhiteListUrl. |
| Image | Schema file for Image. |
| ImageFeed | Schema file for ImageFeed. |
| ImageShare | Schema file for ImageShare. |
| Individual | Schema file for Individual. |
| IndividualShare | Schema file for IndividualShare. |
| Invoice | Schema file for Invoice. |
| InvoiceFeed | Schema file for InvoiceFeed. |
| InvoiceLine | Schema file for InvoiceLine. |
| InvoiceLineFeed | Schema file for InvoiceLineFeed. |
| InvoiceShare | Schema file for InvoiceShare. |
| IPAddressRange | Schema file for IPAddressRange. |
| Lead | Tracks potential customers or business opportunities before they are converted into accounts and contacts. |
| LeadCleanInfo | Schema file for LeadCleanInfo. |
| LeadFeed | Captures Chatter activity, including posts and updates, related to Lead records. |
| LeadShare | Controls sharing settings for Lead records, defining user access levels and visibility. |
| LegalEntity | Schema file for LegalEntity. |
| LegalEntityFeed | Schema file for LegalEntityFeed. |
| LegalEntityShare | Schema file for LegalEntityShare. |
| LightningExperienceTheme | Schema file for LightningExperienceTheme. |
| LightningOnboardingConfig | Schema file for LightningOnboardingConfig. |
| ListEmail | Schema file for ListEmail. |
| ListEmailIndividualRecipient | Schema file for ListEmailIndividualRecipient. |
| ListEmailRecipientSource | Schema file for ListEmailRecipientSource. |
| ListEmailShare | Schema file for ListEmailShare. |
| ListViewChart | Schema file for ListViewChart. |
| LiveChatSensitiveDataRule | Schema file for LiveChatSensitiveDataRule. |
| Location | Schema file for Location. |
| LocationFeed | Schema file for LocationFeed. |
| LocationGroup | Schema file for LocationGroup. |
| LocationGroupAssignment | Schema file for LocationGroupAssignment. |
| LocationGroupFeed | Schema file for LocationGroupFeed. |
| LocationGroupShare | Schema file for LocationGroupShare. |
| LocationShare | Schema file for LocationShare. |
| LoginAnomalyEventStoreFeed | Schema file for LoginAnomalyEventStoreFeed. |
| LoginIp | Stores IP address details associated with user logins, helping track security and access patterns. |
| Macro | Schema file for Macro. |
| MacroInstruction | Schema file for MacroInstruction. |
| MacroShare | Schema file for MacroShare. |
| MacroUsage | Schema file for MacroUsage. |
| MacroUsageShare | Schema file for MacroUsageShare. |
| MailmergeTemplate | Manages mail merge templates used for generating personalized documents. |
| MessagingChannel | Schema file for MessagingChannel. |
| MessagingChannelUsage | Schema file for MessagingChannelUsage. |
| MessagingEndUser | Schema file for MessagingEndUser. |
| MessagingEndUserShare | Schema file for MessagingEndUserShare. |
| MessagingSession | Schema file for MessagingSession. |
| MessagingSessionFeed | Schema file for MessagingSessionFeed. |
| MessagingSessionMetrics | Schema file for MessagingSessionMetrics. |
| MessagingSessionShare | Schema file for MessagingSessionShare. |
| MilestoneType | Schema file for MilestoneType. |
| MlFeatureValueMetric | Schema file for MlFeatureValueMetric. |
| MobileApplicationDetail | Schema file for MobileApplicationDetail. |
| MobileDeviceRegistrar | Tracks mobile devices registered to access Salesforce, used for mobile security and authentication. |
| MsgChannelLanguageKeyword | Schema file for MsgChannelLanguageKeyword. |
| MsgChannelUsageExternalOrg | Schema file for MsgChannelUsageExternalOrg. |
| MutingPermissionSet | Schema file for MutingPermissionSet. |
| MyDomainDiscoverableLogin | Schema file for MyDomainDiscoverableLogin. |
| Note | Stores user-created notes attached to Salesforce records for reference and documentation. |
| OauthCustomScope | Schema file for OauthCustomScope. |
| OauthCustomScopeApp | Schema file for OauthCustomScopeApp. |
| OauthTokenExchangeHandler | Schema file for OauthTokenExchangeHandler. |
| OauthTokenExchHandlerApp | Schema file for OauthTokenExchHandlerApp. |
| ObjectPermissions | Defines object-level permissions, controlling user access to different Salesforce objects. |
| ObjectTerritory2AssignmentRule | Schema file for ObjectTerritory2AssignmentRule. |
| ObjectTerritory2AssignmentRuleItem | Schema file for ObjectTerritory2AssignmentRuleItem. |
| ObjectTerritory2Association | Schema file for ObjectTerritory2Association. |
| OnboardingMetrics | Schema file for OnboardingMetrics. |
| Opportunity | Tracks potential revenue-generating sales deals, managing the sales pipeline. |
| OpportunityCompetitor | Stores details of competitors associated with an opportunity, helping track competitive insights. |
| OpportunityContactRole | Defines the relationship between contacts and opportunities, specifying their role in a sales deal. |
| OpportunityFeed | Captures Chatter activity, including posts and updates, related to opportunity records. |
| OpportunityLineItem | Represents products or services associated with an opportunity, tracking pricing and quantities. |
| OpportunityPartner | Stores details of business partners associated with an opportunity, tracking partnership involvement. |
| OpportunityShare | Controls sharing settings for opportunity records, defining user access levels. |
| Order | Schema file for Order. |
| OrderAdjustmentGroup | Schema file for OrderAdjustmentGroup. |
| OrderAdjustmentGroupFeed | Schema file for OrderAdjustmentGroupFeed. |
| OrderAdjustmentGroupSummary | Schema file for OrderAdjustmentGroupSummary. |
| OrderAdjustmentGroupSummaryFeed | Schema file for OrderAdjustmentGroupSummaryFeed. |
| OrderChangeLogFeed | Schema file for OrderChangeLogFeed. |
| OrderDeliveryGroup | Schema file for OrderDeliveryGroup. |
| OrderDeliveryGroupFeed | Schema file for OrderDeliveryGroupFeed. |
| OrderDeliveryGroupSummary | Schema file for OrderDeliveryGroupSummary. |
| OrderDeliveryGroupSummaryFeed | Schema file for OrderDeliveryGroupSummaryFeed. |
| OrderDeliveryMethod | Schema file for OrderDeliveryMethod. |
| OrderDeliveryMethodFeed | Schema file for OrderDeliveryMethodFeed. |
| OrderDeliveryMethodShare | Schema file for OrderDeliveryMethodShare. |
| OrderFeed | Schema file for OrderFeed. |
| OrderItem | Schema file for OrderItem. |
| OrderItemAdjustmentLineItem | Schema file for OrderItemAdjustmentLineItem. |
| OrderItemAdjustmentLineItemFeed | Schema file for OrderItemAdjustmentLineItemFeed. |
| OrderItemAdjustmentLineSummary | Schema file for OrderItemAdjustmentLineSummary. |
| OrderItemAdjustmentLineSummaryFeed | Schema file for OrderItemAdjustmentLineSummaryFeed. |
| OrderItemFeed | Schema file for OrderItemFeed. |
| OrderItemRelationship | Schema file for OrderItemRelationship. |
| OrderItemRelationshipFeed | Schema file for OrderItemRelationshipFeed. |
| OrderItemsRest | Schema file for OrderItemsRest. |
| OrderItemSummary | Schema file for OrderItemSummary. |
| OrderItemSummaryChange | Schema file for OrderItemSummaryChange. |
| OrderItemSummaryFeed | Schema file for OrderItemSummaryFeed. |
| OrderItemSummaryRelationship | Schema file for OrderItemSummaryRelationship. |
| OrderItemTaxLineItem | Schema file for OrderItemTaxLineItem. |
| OrderItemTaxLineItemFeed | Schema file for OrderItemTaxLineItemFeed. |
| OrderItemTaxLineItemSummary | Schema file for OrderItemTaxLineItemSummary. |
| OrderItemTaxLineItemSummaryFeed | Schema file for OrderItemTaxLineItemSummaryFeed. |
| OrderPaymentSummary | Schema file for OrderPaymentSummary. |
| OrderPaymentSummaryFeed | Schema file for OrderPaymentSummaryFeed. |
| OrderPaymentSummaryReference | Schema file for OrderPaymentSummaryReference. |
| OrderPaymentSummaryShare | Schema file for OrderPaymentSummaryShare. |
| OrderSummary | Schema file for OrderSummary. |
| OrderSummaryAdditionalInfo | Schema file for OrderSummaryAdditionalInfo. |
| OrderSummaryAdditionalInfoFeed | Schema file for OrderSummaryAdditionalInfoFeed. |
| OrderSummaryAdditionalInfoShare | Schema file for OrderSummaryAdditionalInfoShare. |
| OrderSummaryFeed | Schema file for OrderSummaryFeed. |
| OrderSummaryRelationship | Schema file for OrderSummaryRelationship. |
| OrderSummaryRoutingSchedule | Schema file for OrderSummaryRoutingSchedule. |
| OrderSummaryRoutingScheduleShare | Schema file for OrderSummaryRoutingScheduleShare. |
| OrderSummaryShare | Schema file for OrderSummaryShare. |
| Organization | Stores information about the Salesforce organization, including company settings and preferences. |
| OrgDeleteRequest | Schema file for OrgDeleteRequest. |
| OrgDeleteRequestShare | Schema file for OrgDeleteRequestShare. |
| OrgEmailAddressSecurity | Schema file for OrgEmailAddressSecurity. |
| OrgMetric | Schema file for OrgMetric. |
| OrgMetricScanResult | Schema file for OrgMetricScanResult. |
| OrgMetricScanSummary | Schema file for OrgMetricScanSummary. |
| OrgWideEmailAddress | Manages organization-wide email addresses used for sending system-generated emails from Salesforce. |
| OutgoingEmail | Schema file for OutgoingEmail. |
| OutgoingEmailRelation | Schema file for OutgoingEmailRelation. |
| PardotTenant | Schema file for PardotTenant. |
| Partner | Tracks business partner relationships, linking them to accounts and opportunities. |
| PartyConsent | Schema file for PartyConsent. |
| PartyConsentFeed | Schema file for PartyConsentFeed. |
| PartyConsentShare | Schema file for PartyConsentShare. |
| Payment | Schema file for Payment. |
| PaymentAuthAdjustment | Schema file for PaymentAuthAdjustment. |
| PaymentAuthorization | Schema file for PaymentAuthorization. |
| PaymentFeed | Schema file for PaymentFeed. |
| PaymentGateway | Schema file for PaymentGateway. |
| PaymentGatewayLog | Schema file for PaymentGatewayLog. |
| PaymentGatewayProvider | Schema file for PaymentGatewayProvider. |
| PaymentGroup | Schema file for PaymentGroup. |
| PaymentLineInvoice | Schema file for PaymentLineInvoice. |
| PermissionSet | Manages permission sets that grant additional access and security permissions to users. |
| PermissionSetAssignment | Assigns permission sets to users, extending their security and access beyond standard profiles. |
| PermissionSetGroup | Schema file for PermissionSetGroup. |
| PermissionSetGroupComponent | Schema file for PermissionSetGroupComponent. |
| PermissionSetLicenseAssign | Manages the assignment of permission set licenses to specific users. |
| PermissionSetTabSetting | Schema file for PermissionSetTabSetting. |
| PipelineInspectionListView | Schema file for PipelineInspectionListView. |
| PlatformCachePartition | Schema file for PlatformCachePartition. |
| PlatformCachePartitionType | Schema file for PlatformCachePartitionType. |
| Pricebook2 | Stores price books that define different pricing structures for products and services. |
| PricebookEntry | Represents individual product entries in a price book, linking products to specific pricing details. |
| PrivacyJobSessionShare | Schema file for PrivacyJobSessionShare. |
| PrivacyObjectSessionShare | Schema file for PrivacyObjectSessionShare. |
| PrivacyPolicy | Schema file for PrivacyPolicy. |
| PrivacyPolicyDefinition | Schema file for PrivacyPolicyDefinition. |
| PrivacyRTBFRequest | Schema file for PrivacyRTBFRequest. |
| PrivacyRTBFRequestFeed | Schema file for PrivacyRTBFRequestFeed. |
| PrivacyRTBFRequestShare | Schema file for PrivacyRTBFRequestShare. |
| PrivacySessionRecordFailureShare | Schema file for PrivacySessionRecordFailureShare. |
| ProcessException | Schema file for ProcessException. |
| ProcessExceptionShare | Schema file for ProcessExceptionShare. |
| ProcessInstanceWorkitem | Stores work items assigned to users as part of an approval process. |
| Product2 | Stores product catalog information, including details about goods and services offered by a company. |
| Product2Feed | Captures Chatter activity, including posts and updates, related to Product2 records. |
| ProductConsumptionSchedule | Schema file for ProductConsumptionSchedule. |
| ProductEntitlementTemplate | Schema file for ProductEntitlementTemplate. |
| ProductRelatedComponent | Schema file for ProductRelatedComponent. |
| ProductRelationshipType | Schema file for ProductRelationshipType. |
| Profile | Defines user profiles, specifying access permissions and security settings for different roles. |
| Prompt | Schema file for Prompt. |
| PromptAction | Schema file for PromptAction. |
| PromptActionShare | Schema file for PromptActionShare. |
| PromptError | Schema file for PromptError. |
| PromptErrorShare | Schema file for PromptErrorShare. |
| PromptVersion | Schema file for PromptVersion. |
| Prospect | Schema file for Prospect. |
| PushTopic | Stores PushTopic records used for real-time data updates through the Streaming API. |
| QueueSobject | Tracks records assigned to queues, managing workload distribution across teams. |
| QuickText | Schema file for QuickText. |
| QuickTextShare | Schema file for QuickTextShare. |
| QuickTextUsageShare | Schema file for QuickTextUsageShare. |
| Quote | Represents sales quotes, tracking pricing details and products offered to customers. |
| QuoteDocument | Stores quote documents generated from Salesforce, including PDFs sent to customers. |
| QuoteFeed | Captures Chatter activity, including posts and updates, related to Quote records. |
| QuoteLineItem | Tracks individual products or services included in a Quote, managing pricing and quantities. |
| RecentlyViewed | Stores records recently accessed by a user for quick retrieval and navigation. |
| Recommendation | Schema file for Recommendation. |
| RecommendationResponse | Schema file for RecommendationResponse. |
| RecordAction | Schema file for RecordAction. |
| RecordType | Defines different record types within an object, allowing for customized page layouts and processes. |
| RedirectWhitelistUrl | Schema file for RedirectWhitelistUrl. |
| Refund | Schema file for Refund. |
| RefundLinePayment | Schema file for RefundLinePayment. |
| ReplyEmailSettings | Schema file for ReplyEmailSettings. |
| ReportAnomalyEventStoreFeed | Schema file for ReportAnomalyEventStoreFeed. |
| ReportFeed | Captures Chatter activity, including posts and updates, related to Report records. |
| RuleTerritory2Association | Schema file for RuleTerritory2Association. |
| SalesChannel | Schema file for SalesChannel. |
| SalesChannelFeed | Schema file for SalesChannelFeed. |
| SalesChannelShare | Schema file for SalesChannelShare. |
| Scontrol | Represents legacy custom controls used in older Salesforce environments before Visualforce and Lightning components. |
| Scorecard | Schema file for Scorecard. |
| ScorecardAssociation | Schema file for ScorecardAssociation. |
| ScorecardMetric | Schema file for ScorecardMetric. |
| ScorecardShare | Schema file for ScorecardShare. |
| SearchPromotionRule | Schema file for SearchPromotionRule. |
| SecurityCustomBaseline | Schema file for SecurityCustomBaseline. |
| SelfServiceUser | Manages self-service portal users who can log cases and access knowledge articles. |
| Seller | Schema file for Seller. |
| SellerShare | Schema file for SellerShare. |
| SenderEmailAddress | Schema file for SenderEmailAddress. |
| SenderEmailAddressShare | Schema file for SenderEmailAddressShare. |
| ServiceContract | Schema file for ServiceContract. |
| ServiceContractFeed | Schema file for ServiceContractFeed. |
| ServiceContractShare | Schema file for ServiceContractShare. |
| SessionHijackingEventStoreFeed | Schema file for SessionHijackingEventStoreFeed. |
| SetupAssistantStep | Schema file for SetupAssistantStep. |
| SetupEntityAccess | Controls access settings for custom metadata types, objects, and system permissions. |
| SiteFeed | Captures Chatter activity, including posts and updates, related to Site records. |
| SiteIframeWhiteListUrl | Schema file for SiteIframeWhiteListUrl. |
| SiteRedirectMapping | Schema file for SiteRedirectMapping. |
| Solution | Stores solutions used in the knowledge base for resolving customer issues. |
| SolutionFeed | Captures Chatter activity, including posts and updates, related to Solution records. |
| SPSamlAttributes | Schema file for SPSamlAttributes. |
| StaticResource | Stores static files, such as images, stylesheets, and JavaScript, for use in Visualforce and Lightning applications. |
| StreamingChannel | Schema file for StreamingChannel. |
| StreamingChannelShare | Schema file for StreamingChannelShare. |
| Swarm | Schema file for Swarm. |
| SwarmFeed | Schema file for SwarmFeed. |
| SwarmMember | Schema file for SwarmMember. |
| SwarmMemberFeed | Schema file for SwarmMemberFeed. |
| SwarmMemberShare | Schema file for SwarmMemberShare. |
| SwarmShare | Schema file for SwarmShare. |
| TableauHostMapping | Schema file for TableauHostMapping. |
| TableauHostMappingShare | Schema file for TableauHostMappingShare. |
| Task | Represents user tasks, such as follow-ups and reminders, that track activities within Salesforce. |
| TaskFeed | Captures Chatter activity, including posts and updates, related to Task records. |
| Territory2 | Schema file for Territory2. |
| Territory2Model | Schema file for Territory2Model. |
| Territory2ModelFeed | Schema file for Territory2ModelFeed. |
| Territory2ObjectExclusion | Schema file for Territory2ObjectExclusion. |
| Territory2ObjSharingConfig | Schema file for Territory2ObjSharingConfig. |
| Territory2Type | Schema file for Territory2Type. |
| TerritoryAdminAssignment | Schema file for TerritoryAdminAssignment. |
| TerritoryMgmtObjectConfig | Schema file for TerritoryMgmtObjectConfig. |
| TestSuiteMembership | Schema file for TestSuiteMembership. |
| ThreatDetectionFeedback | Schema file for ThreatDetectionFeedback. |
| ThreatDetectionFeedbackFeed | Schema file for ThreatDetectionFeedbackFeed. |
| TodayGoal | Schema file for TodayGoal. |
| TodayGoalShare | Schema file for TodayGoalShare. |
| Topic | Represents topics used for categorizing and grouping content in Chatter and records. |
| TopicAssignment | Links topics to records, allowing users to categorize and filter content using topic tags. |
| TopicFeed | Captures Chatter activity, including posts and updates, related to Topic records. |
| TopicUserEvent | Schema file for TopicUserEvent. |
| TransactionSecurityPolicy | Schema file for TransactionSecurityPolicy. |
| User | Stores details about Salesforce users, including login credentials, profiles, and roles. |
| UserAppInfo | Schema file for UserAppInfo. |
| UserAppMenuCustomization | Schema file for UserAppMenuCustomization. |
| UserAppMenuCustomizationShare | Schema file for UserAppMenuCustomizationShare. |
| UserDefinedLabel | Schema file for UserDefinedLabel. |
| UserDefinedLabelAssignment | Schema file for UserDefinedLabelAssignment. |
| UserDefinedLabelAssignmentShare | Schema file for UserDefinedLabelAssignmentShare. |
| UserDefinedLabelShare | Schema file for UserDefinedLabelShare. |
| UserEmailPreferredPerson | Schema file for UserEmailPreferredPerson. |
| UserEmailPreferredPersonShare | Schema file for UserEmailPreferredPersonShare. |
| UserFeed | Captures Chatter activity, including posts and updates, related to User records. |
| UserListView | Schema file for UserListView. |
| UserListViewCriterion | Schema file for UserListViewCriterion. |
| UserLocalWebServerIdentity | Schema file for UserLocalWebServerIdentity. |
| UserLocalWebServerIdentityShare | Schema file for UserLocalWebServerIdentityShare. |
| UserLogin | Logs authentication attempts, tracking successful and failed login attempts. |
| UserPackageLicense | Schema file for UserPackageLicense. |
| UserPreference | Stores user-specific preferences for features, notifications, and customization settings. |
| UserPrioritizedRecord | Schema file for UserPrioritizedRecord. |
| UserPrioritizedRecordShare | Schema file for UserPrioritizedRecordShare. |
| UserProfile | Manages user profile information, including name, email, and accessibility settings. |
| UserProvAccount | Schema file for UserProvAccount. |
| UserProvAccountStaging | Schema file for UserProvAccountStaging. |
| UserProvisioningConfig | Schema file for UserProvisioningConfig. |
| UserProvisioningLog | Schema file for UserProvisioningLog. |
| UserProvisioningRequest | Schema file for UserProvisioningRequest. |
| UserProvisioningRequestShare | Schema file for UserProvisioningRequestShare. |
| UserProvMockTarget | Schema file for UserProvMockTarget. |
| UserRole | Defines the role hierarchy in Salesforce, controlling data access and reporting relationships. |
| UserShare | Schema file for UserShare. |
| UserTerritory2Association | Schema file for UserTerritory2Association. |
| UserTerritory2AssocLog | Schema file for UserTerritory2AssocLog. |
| Vote | Stores votes cast on Chatter posts and comments, allowing users to indicate approval or agreement. |
| WaveAutoInstallRequest | Schema file for WaveAutoInstallRequest. |
| WebLink | Manages custom web links added to Salesforce page layouts, providing quick access to external resources. |
| WebStore | Schema file for WebStore. |
| WebStoreShare | Schema file for WebStoreShare. |
| WorkOrder | Schema file for WorkOrder. |
| WorkOrderFeed | Schema file for WorkOrderFeed. |
| WorkOrderLineItem | Schema file for WorkOrderLineItem. |
| WorkOrderLineItemFeed | Schema file for WorkOrderLineItemFeed. |
| WorkOrderShare | Schema file for WorkOrderShare. |
The Cloud can also expose custom entities on your Salesforce account that are not mentioned in the Tables. You can query against these custom entities as with any other table. Additionally, you can query against custom fields of standard entities.
There is a naming limitation that applies to the lists and to the custom fields. Empty spaces in list names are converted to underscores for the table names. Also, all custom fields and custom entities are identified by Salesforce with a __c appended to the end of the name.
As of the Spring20 release of the Salesforce's APIs, access for users without the "Customize Application" permission to read unprotected custom metadata types is revoked. To minimize the impact on your users, admins with the Customize Application permission can grant read access through profile or permission sets. See this link for more info.
Contains details about customer accounts, including business or individual information and related activities.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique Salesforce ID that identifies the account record. | |
| IsDeleted | Bool | True |
Indicates whether the account has been deleted from Salesforce (true) or not (false). | |
| MasterRecordId | String | True |
Account.Id |
ID of the master account record when this account is part of a merged set. |
| Name | String | False |
The name of the account, typically representing a company or organization. | |
| LastName | String | False |
Last name of the contact or person account. Required for person accounts. | |
| FirstName | String | False |
First name of the contact or person account. | |
| Salutation | String | False |
Honorific abbreviation, word, or phrase to be used in front of the name in greetings. | |
| Type | String | False |
Classification of the account such as Customer, Partner, or Prospect. | |
| RecordTypeId | String | False |
RecordType.Id |
ID of the record type assigned to this object. |
| ParentId | String | False |
Account.Id |
ID of the parent account in a hierarchical relationship. |
| BillingStreet | String | False |
Street address used for billing purposes. | |
| BillingCity | String | False |
City associated with the billing address of the account. | |
| BillingState | String | False |
State or province for the billing address. | |
| BillingPostalCode | String | False |
Postal or ZIP code for the billing address. | |
| BillingCountry | String | False |
Country associated with the billing address. | |
| BillingLatitude | Double | False |
Latitude coordinate of the billing address for mapping or geolocation. | |
| BillingLongitude | Double | False |
Longitude coordinate of the billing address for mapping or geolocation. | |
| BillingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Billing address. | |
| ShippingStreet | String | False |
Street address used for shipping purposes. | |
| ShippingCity | String | False |
City associated with the shipping address of the account. | |
| ShippingState | String | False |
State or province for the shipping address. | |
| ShippingPostalCode | String | False |
Postal or ZIP code for the shipping address. | |
| ShippingCountry | String | False |
Country associated with the shipping address. | |
| ShippingLatitude | Double | False |
Latitude coordinate of the shipping address for geolocation. | |
| ShippingLongitude | Double | False |
Longitude coordinate of the shipping address for geolocation. | |
| ShippingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Shipping address. | |
| Phone | String | False |
Primary phone number associated with the account. | |
| Fax | String | False |
Fax number associated with the account. | |
| AccountNumber | String | False |
Custom or system-generated reference number for the account. | |
| Website | String | False |
URL of the account's company website. | |
| PhotoUrl | String | True |
URL for the contact's photo. | |
| Sic | String | False |
Standard Industry Classification (SIC) code for categorizing the business. | |
| Industry | String | False |
Industry sector the account belongs to, such as Technology or Retail. | |
| AnnualRevenue | Decimal | False |
Estimated or reported yearly revenue for the account. | |
| NumberOfEmployees | Int | False |
Total number of employees working at the account organization. | |
| Ownership | String | False |
Ownership structure of the organization, such as Public, Private, or Subsidiary. | |
| TickerSymbol | String | False |
Stock market ticker symbol of the account if it is publicly traded. | |
| Description | String | False |
Free-text field for entering detailed information about the account. | |
| Rating | String | False |
Custom rating for the account, such as Hot, Warm, or Cold. | |
| Site | String | False |
Location name or office site tied to the account, useful for organizations with multiple locations. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| OwnerId | String | False |
User.Id |
ID of the user assigned as the owner of the account. |
| CreatedDate | Datetime | True |
Date and time the account was originally created in Salesforce. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the account record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the account record. |
| LastActivityDate | Date | True |
Date of the most recent activity logged against this account, such as a task or event. | |
| LastViewedDate | Datetime | True |
Date and time when the account record was last viewed by the user. | |
| LastReferencedDate | Datetime | True |
Date and time when the account record was last accessed in a related context, such as a report or dashboard. | |
| PersonContactId | String | True |
Contact.Id |
ID of the Contact associated with this person account. |
| IsPersonAccount | Bool | True |
Indicates whether this account is a person account. | |
| PersonMailingStreet | String | False |
Person account field for MailingStreet. | |
| PersonMailingCity | String | False |
Person account field for MailingCity. | |
| PersonMailingState | String | False |
Person account field for MailingState. | |
| PersonMailingPostalCode | String | False |
Person account field for MailingPostalCode. | |
| PersonMailingCountry | String | False |
Person account field for MailingCountry. | |
| PersonMailingLatitude | Double | False |
Person account field for MailingLatitude. | |
| PersonMailingLongitude | Double | False |
Person account field for MailingLongitude. | |
| PersonMailingGeocodeAccuracy | String | False |
Person account field for MailingGeocodeAccuracy. | |
| PersonOtherStreet | String | False |
Person account field for OtherStreet. | |
| PersonOtherCity | String | False |
Person account field for OtherCity. | |
| PersonOtherState | String | False |
Person account field for OtherState. | |
| PersonOtherPostalCode | String | False |
Person account field for OtherPostalCode. | |
| PersonOtherCountry | String | False |
Person account field for OtherCountry. | |
| PersonOtherLatitude | Double | False |
Person account field for OtherLatitude. | |
| PersonOtherLongitude | Double | False |
Person account field for OtherLongitude. | |
| PersonOtherGeocodeAccuracy | String | False |
Person account field for OtherGeocodeAccuracy. | |
| PersonMobilePhone | String | False |
Mobile phone number for the person account. | |
| PersonHomePhone | String | False |
Home phone number for the person account. | |
| PersonOtherPhone | String | False |
Additional phone number for the person account. | |
| PersonAssistantPhone | String | False |
Phone number for the person account's assistant. | |
| PersonEmail | String | False |
Email address for the person account. | |
| PersonTitle | String | False |
Title for the person account. | |
| PersonDepartment | String | False |
Department for the person account. | |
| PersonAssistantName | String | False |
Name of the person account's assistant. | |
| PersonLeadSource | String | False |
Source from which the person account lead was obtained. | |
| PersonBirthdate | Date | False |
Birth date for the person account. | |
| PersonLastCURequestDate | Datetime | True |
Date and time of the last user cleanup request. | |
| PersonLastCUUpdateDate | Datetime | True |
Date and time when the record was last updated by user cleanup. | |
| PersonEmailBouncedReason | String | False |
Reason why the person account email bounced. | |
| PersonEmailBouncedDate | Datetime | False |
Date and time when the person account email bounced. | |
| PersonIndividualId | String | False |
Individual.Id |
ID of the data privacy record associated with this person account. |
| Jigsaw | String | False |
Legacy Data.com identifier used for business data enrichment. | |
| JigsawCompanyId | String | True |
Legacy Data.com unique company identifier. | |
| CleanStatus | String | False |
Indicates the record's clean status compared with Data.com. | |
| AccountSource | String | False |
Origin of the account record, such as Web, Phone Inquiry, or Purchased List. | |
| DunsNumber | String | False |
The Data Universal Number System (D-U-N-S) number is a nine-digit number assigned to companies by Dun & Bradstreet. | |
| Tradestyle | String | False |
A name, different from its legal name, that an organization may use for conducting business. | |
| NaicsCode | String | False |
The North American Industry Classification System (NAICS) code for the account's primary business. | |
| NaicsDesc | String | False |
A brief description based on the NAICS code. | |
| YearStarted | String | False |
Date when the company was established. | |
| SicDesc | String | False |
Description of the SIC code representing the account's business category. | |
| DandbCompanyId | String | False |
DandBCompany.Id |
The ID of the associated DB company record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for the last system-level modification, used for record tracking and synchronization. | |
| LastModifiedDate | Datetime | True |
Timestamp of the most recent update to the account. |
Schema file for AccountCleanInfo.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| AccountId | String | True |
Account.Id |
ID of the Account associated with this record. |
| LastMatchedDate | Datetime | True |
Date associated with LastMatched. | |
| LastStatusChangedDate | Datetime | True |
Date associated with LastStatusChanged. | |
| LastStatusChangedById | String | True |
User.Id |
ID of the LastStatusChangedBy associated with this record. |
| IsInactive | Bool | False |
Indicates whether the record has the Inactive characteristic. | |
| CompanyName | String | True |
Field containing CompanyName information. | |
| Phone | String | True |
Phone number for the contact or account. | |
| Street | String | True |
Street address. | |
| City | String | True |
City portion of the address. | |
| State | String | True |
State or province portion of the address. | |
| PostalCode | String | True |
Postal code portion of the address. | |
| Country | String | True |
Country portion of the address. | |
| Latitude | Double | True |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | True |
Used with Latitude to specify the precise geolocation of an address. | |
| GeocodeAccuracy | String | True |
Accuracy level of the geocode for the address. | |
| Website | String | True |
Website URL for this account. | |
| TickerSymbol | String | True |
The stock market symbol for the account. | |
| AnnualRevenue | Decimal | True |
Estimated annual revenue of the account. | |
| NumberOfEmployees | Int | True |
Number of employees working at the company represented by this account. | |
| Industry | String | True |
Industry that the account belongs to. | |
| Ownership | String | True |
Ownership type for the account. | |
| DunsNumber | String | True |
The Data Universal Number System (D-U-N-S) number is a nine-digit number assigned to companies by Dun & Bradstreet. | |
| Sic | String | True |
Standard Industrial Classification code of the company's main business categorization. | |
| SicDescription | String | True |
Field containing SicDescription information. | |
| NaicsCode | String | True |
Field containing NaicsCode information. | |
| NaicsDescription | String | True |
Field containing NaicsDescription information. | |
| YearStarted | String | True |
Field containing YearStarted information. | |
| Fax | String | True |
Fax number for the contact or account. | |
| AccountSite | String | True |
Field containing AccountSite information. | |
| Description | String | True |
Text description of the record. | |
| Tradestyle | String | True |
Field containing Tradestyle information. | |
| DandBCompanyDunsNumber | String | True |
DandBCompanyDuns identification number. | |
| DunsRightMatchGrade | String | True |
Field containing DunsRightMatchGrade information. | |
| DunsRightMatchConfidence | Int | True |
Field containing DunsRightMatchConfidence information. | |
| CompanyStatusDataDotCom | String | True |
Field containing CompanyStatusDataDotCom information. | |
| IsReviewedCompanyName | Bool | False |
Indicates whether the record has the ReviewedCompanyName characteristic. | |
| IsReviewedPhone | Bool | False |
Indicates whether the record has the ReviewedPhone characteristic. | |
| IsReviewedAddress | Bool | False |
Indicates whether the record has the ReviewedAddress characteristic. | |
| IsReviewedWebsite | Bool | False |
Indicates whether the record has the ReviewedWebsite characteristic. | |
| IsReviewedTickerSymbol | Bool | False |
Indicates whether the record has the ReviewedTickerSymbol characteristic. | |
| IsReviewedAnnualRevenue | Bool | False |
Indicates whether the record has the ReviewedAnnualRevenue characteristic. | |
| IsReviewedNumberOfEmployees | Bool | False |
Indicates whether the record has the ReviewedNumberOfEmployees characteristic. | |
| IsReviewedIndustry | Bool | False |
Indicates whether the record has the ReviewedIndustry characteristic. | |
| IsReviewedOwnership | Bool | False |
Indicates whether the record has the ReviewedOwnership characteristic. | |
| IsReviewedDunsNumber | Bool | False |
Indicates whether the record has the ReviewedDunsNumber characteristic. | |
| IsReviewedSic | Bool | False |
Indicates whether the record has the ReviewedSic characteristic. | |
| IsReviewedSicDescription | Bool | False |
Indicates whether the record has the ReviewedSicDescription characteristic. | |
| IsReviewedNaicsCode | Bool | False |
Indicates whether the record has the ReviewedNaicsCode characteristic. | |
| IsReviewedNaicsDescription | Bool | False |
Indicates whether the record has the ReviewedNaicsDescription characteristic. | |
| IsReviewedYearStarted | Bool | False |
Indicates whether the record has the ReviewedYearStarted characteristic. | |
| IsReviewedFax | Bool | False |
Indicates whether the record has the ReviewedFax characteristic. | |
| IsReviewedAccountSite | Bool | False |
Indicates whether the record has the ReviewedAccountSite characteristic. | |
| IsReviewedDescription | Bool | False |
Indicates whether the record has the ReviewedDescription characteristic. | |
| IsReviewedTradestyle | Bool | False |
Indicates whether the record has the ReviewedTradestyle characteristic. | |
| IsReviewedDandBCompanyDunsNumber | Bool | False |
Indicates whether the record has the ReviewedDandBCompanyDunsNumber characteristic. | |
| IsDifferentCompanyName | Bool | True |
Indicates whether the record has the DifferentCompanyName characteristic. | |
| IsDifferentPhone | Bool | True |
Indicates whether the record has the DifferentPhone characteristic. | |
| IsDifferentStreet | Bool | True |
Indicates whether the record has the DifferentStreet characteristic. | |
| IsDifferentCity | Bool | True |
Indicates whether the record has the DifferentCity characteristic. | |
| IsDifferentState | Bool | True |
Indicates whether the record has the DifferentState characteristic. | |
| IsDifferentPostalCode | Bool | True |
Indicates whether the record has the DifferentPostalCode characteristic. | |
| IsDifferentCountry | Bool | True |
Indicates whether the record has the DifferentCountry characteristic. | |
| IsDifferentWebsite | Bool | True |
Indicates whether the record has the DifferentWebsite characteristic. | |
| IsDifferentTickerSymbol | Bool | True |
Indicates whether the record has the DifferentTickerSymbol characteristic. | |
| IsDifferentAnnualRevenue | Bool | True |
Indicates whether the record has the DifferentAnnualRevenue characteristic. | |
| IsDifferentNumberOfEmployees | Bool | True |
Indicates whether the record has the DifferentNumberOfEmployees characteristic. | |
| IsDifferentIndustry | Bool | True |
Indicates whether the record has the DifferentIndustry characteristic. | |
| IsDifferentOwnership | Bool | True |
Indicates whether the record has the DifferentOwnership characteristic. | |
| IsDifferentDunsNumber | Bool | True |
Indicates whether the record has the DifferentDunsNumber characteristic. | |
| IsDifferentSic | Bool | True |
Indicates whether the record has the DifferentSic characteristic. | |
| IsDifferentSicDescription | Bool | True |
Indicates whether the record has the DifferentSicDescription characteristic. | |
| IsDifferentNaicsCode | Bool | True |
Indicates whether the record has the DifferentNaicsCode characteristic. | |
| IsDifferentNaicsDescription | Bool | True |
Indicates whether the record has the DifferentNaicsDescription characteristic. | |
| IsDifferentYearStarted | Bool | True |
Indicates whether the record has the DifferentYearStarted characteristic. | |
| IsDifferentFax | Bool | True |
Indicates whether the record has the DifferentFax characteristic. | |
| IsDifferentAccountSite | Bool | True |
Indicates whether the record has the DifferentAccountSite characteristic. | |
| IsDifferentDescription | Bool | True |
Indicates whether the record has the DifferentDescription characteristic. | |
| IsDifferentTradestyle | Bool | True |
Indicates whether the record has the DifferentTradestyle characteristic. | |
| IsDifferentDandBCompanyDunsNumber | Bool | True |
Indicates whether the record has the DifferentDandBCompanyDunsNumber characteristic. | |
| IsDifferentStateCode | Bool | True |
Indicates whether the record has the DifferentStateCode characteristic. | |
| IsDifferentCountryCode | Bool | True |
Indicates whether the record has the DifferentCountryCode characteristic. | |
| CleanedByJob | Bool | True |
Field containing CleanedByJob information. | |
| CleanedByUser | Bool | True |
Field containing CleanedByUser information. | |
| IsFlaggedWrongCompanyName | Bool | False |
Indicates whether the record has the FlaggedWrongCompanyName characteristic. | |
| IsFlaggedWrongPhone | Bool | False |
Indicates whether the record has the FlaggedWrongPhone characteristic. | |
| IsFlaggedWrongAddress | Bool | False |
Indicates whether the record has the FlaggedWrongAddress characteristic. | |
| IsFlaggedWrongWebsite | Bool | False |
Indicates whether the record has the FlaggedWrongWebsite characteristic. | |
| IsFlaggedWrongTickerSymbol | Bool | False |
Indicates whether the record has the FlaggedWrongTickerSymbol characteristic. | |
| IsFlaggedWrongAnnualRevenue | Bool | False |
Indicates whether the record has the FlaggedWrongAnnualRevenue characteristic. | |
| IsFlaggedWrongNumberOfEmployees | Bool | False |
Indicates whether the record has the FlaggedWrongNumberOfEmployees characteristic. | |
| IsFlaggedWrongIndustry | Bool | False |
Indicates whether the record has the FlaggedWrongIndustry characteristic. | |
| IsFlaggedWrongOwnership | Bool | False |
Indicates whether the record has the FlaggedWrongOwnership characteristic. | |
| IsFlaggedWrongDunsNumber | Bool | False |
Indicates whether the record has the FlaggedWrongDunsNumber characteristic. | |
| IsFlaggedWrongSic | Bool | False |
Indicates whether the record has the FlaggedWrongSic characteristic. | |
| IsFlaggedWrongSicDescription | Bool | False |
Indicates whether the record has the FlaggedWrongSicDescription characteristic. | |
| IsFlaggedWrongNaicsCode | Bool | False |
Indicates whether the record has the FlaggedWrongNaicsCode characteristic. | |
| IsFlaggedWrongNaicsDescription | Bool | False |
Indicates whether the record has the FlaggedWrongNaicsDescription characteristic. | |
| IsFlaggedWrongYearStarted | Bool | False |
Indicates whether the record has the FlaggedWrongYearStarted characteristic. | |
| IsFlaggedWrongFax | Bool | False |
Indicates whether the record has the FlaggedWrongFax characteristic. | |
| IsFlaggedWrongAccountSite | Bool | False |
Indicates whether the record has the FlaggedWrongAccountSite characteristic. | |
| IsFlaggedWrongDescription | Bool | False |
Indicates whether the record has the FlaggedWrongDescription characteristic. | |
| IsFlaggedWrongTradestyle | Bool | False |
Indicates whether the record has the FlaggedWrongTradestyle characteristic. | |
| DataDotComId | String | True |
ID of the DataDotCom associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Tracks the roles that contacts play within accounts, helping to define relationships in Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the AccountContactRole record. | |
| IsDeleted | Bool | True |
Indicates whether the AccountContactRole record has been deleted. | |
| CreatedDate | Datetime | True |
The date and time when the AccountContactRole was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the AccountContactRole record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the AccountContactRole record. |
| AccountId | String | False |
Account.Id |
ID of the account associated with this role. |
| ContactId | String | False |
Contact.Id |
ID of the contact associated with this role. |
| Role | String | False |
Describes the contact's role in relation to the account, such as decision maker or influencer. | |
| IsPrimary | Bool | False |
Indicates whether the contact is the primary contact for the account. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for the last system update to the AccountContactRole record. | |
| LastModifiedDate | Datetime | True |
The date and time when the AccountContactRole was last modified. |
Captures Chatter feed updates, including posts, comments, and interactions related to Account records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the AccountFeed record. | |
| ParentId | String | True |
Account.Id |
ID of the account record that this feed item is associated with. |
| Type | String | True |
Type of feed item, such as text post, link, or content attachment. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
The number of comments associated with this feed item. | |
| LikeCount | Int | True |
The number of likes this feed item has received. | |
| Title | String | True |
Title of the feed item, typically used for link or file posts. | |
| Body | String | True |
Main content or message of the feed item. | |
| LinkUrl | String | True |
URL of a link shared in the feed item, if applicable. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a related Salesforce record linked to this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who inserted the feed item on behalf of another user or process. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update for the feed item. | |
| LastModifiedDate | Datetime | True |
The date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
The date and time when the feed item was created. |
Stores partner relationships associated with accounts, helping to track business partnerships.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the account partner relationship record. | |
| AccountFromId | String | False |
Account.Id |
ID of the primary account in the partner relationship. |
| AccountToId | String | False |
Account.Id |
ID of the related partner account. |
| OpportunityId | String | False |
Opportunity.Id |
ID of the opportunity associated with this partner relationship, if any. |
| Role | String | False |
The role this partner account plays in the relationship. | |
| IsPrimary | Bool | False |
Indicates whether this partner relationship is marked as the primary one. | |
| CreatedById | String | True |
User.Id |
ID of the user who created this partner relationship. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified this partner relationship. |
| IsDeleted | Bool | True |
Indicates whether this partner relationship has been deleted. | |
| ReversePartnerId | String | True |
ID of the corresponding partner relationship in the reverse direction. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for when the system last modified this record. | |
| LastModifiedDate | Datetime | True |
Date and time when this partner relationship was last modified. | |
| CreatedDate | Datetime | True |
Date and time when this partner relationship was created. |
Schema file for ActionLinkGroupTemplate.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ExecutionsAllowed | String | False |
Field containing ExecutionsAllowed information. | |
| HoursUntilExpiration | Int | False |
Field containing HoursUntilExpiration information. | |
| Category | String | False |
Field containing Category information. | |
| IsPublished | Bool | False |
Indicates whether the record has the Published characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ActionLinkTemplate.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ActionLinkGroupTemplateId | String | False |
ID of the ActionLinkGroupTemplate associated with this record. | |
| LabelKey | String | False |
Field containing LabelKey information. | |
| Method | String | False |
Field containing Method information. | |
| LinkType | String | False |
Type classification for Link. | |
| Position | Int | False |
Field containing Position information. | |
| IsConfirmationRequired | Bool | False |
Indicates whether the record has the ConfirmationRequired characteristic. | |
| IsGroupDefault | Bool | False |
Indicates whether the record has the GroupDefault characteristic. | |
| UserVisibility | String | False |
Field containing UserVisibility information. | |
| UserAlias | String | False |
Field containing UserAlias information. | |
| Label | String | False |
Field containing Label information. | |
| ActionUrl | String | False |
Field containing ActionUrl information. | |
| RequestBody | String | False |
Field containing RequestBody information. | |
| Headers | String | False |
Field containing Headers information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ActivityFieldHistory.
| Name | Type | ReadOnly | References | Description |
| Id | String | True |
Unique identifier for the record. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| ActivityId | String | True |
ID of the Activity associated with this record. | |
| ChangedDate | Datetime | True |
Date associated with Changed. | |
| ChangedById | String | True |
User.Id |
ID of the ChangedBy associated with this record. |
| FieldName | String | True |
Field containing FieldName information. | |
| DataType | String | True |
Type classification for Data. | |
| Operation | String | True |
Field containing Operation information. | |
| IsDataAvailable | Bool | True |
Indicates whether the record has the DataAvailable characteristic. | |
| OldValueDateTime | Datetime | True |
Field containing OldValueDateTime information. | |
| NewValueDateTime | Datetime | True |
Field containing NewValueDateTime information. | |
| OldValueNumber | Double | True |
OldValue identification number. | |
| NewValueNumber | Double | True |
NewValue identification number. | |
| OldValueText | String | True |
Field containing OldValueText information. | |
| NewValueText | String | True |
Field containing NewValueText information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Holds additional phone numbers associated with various Salesforce entities, such as contacts or accounts.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the additional phone number record. | |
| IsDeleted | Bool | True |
Indicates whether the additional number record has been deleted. | |
| CallCenterId | String | False |
CallCenter.Id |
ID of the call center this number is associated with. |
| Name | String | False |
Name or label assigned to the additional phone number. | |
| Description | String | False |
Optional description providing context or purpose of the number. | |
| Phone | String | False |
The actual phone number assigned as an additional number. | |
| CreatedDate | Datetime | True |
Timestamp indicating when this number record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created this additional number record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp used for internal tracking of changes. | |
| LastModifiedDate | Datetime | True |
Timestamp indicating the last time the record was modified. |
Schema file for AIRecordInsight.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| AiApplicationId | String | True |
ID of the AiApplication associated with this record. | |
| TargetId | String | True |
ID of the Target associated with this record. | |
| TargetSobjectType | String | True |
Type classification for TargetSobject. | |
| Type | String | True |
Type of account or classification. | |
| RunGuid | String | True |
ID of the RunGu associated with this record. | |
| RunStartTime | Datetime | True |
Field containing RunStartTime information. | |
| ValidUntil | Datetime | True |
Field containing ValidUntil information. | |
| Confidence | Double | True |
Field containing Confidence information. | |
| TargetField | String | True |
Field containing TargetField information. | |
| Status | String | True |
Status of the record. | |
| ModelId | String | True |
MLModel.Id |
ID of the Model associated with this record. |
| MlPredictionDefinitionId | String | True |
ID of the MlPredictionDefinition associated with this record. | |
| PredictionField | String | True |
Field containing PredictionField information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for AITrustAttribute.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| AttributeType | String | False |
Type classification for Attribute. | |
| Description | String | False |
Text description of the record. | |
| AttributeSubtype | String | False |
Type classification for AttributeSub. | |
| CountryCode | String | False |
Field containing CountryCode information. | |
| LanguageCode | String | False |
Field containing LanguageCode information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AITrustAttrSetup.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| TrustAttribute | String | False |
Field containing TrustAttribute information. | |
| IsEnabled | Bool | False |
Indicates whether the record has the Enabled characteristic. | |
| IsLocked | Bool | False |
Indicates whether the record has the Locked characteristic. | |
| Scope | String | False |
Field containing Scope information. | |
| SourceObject | String | False |
Field containing SourceObject information. | |
| AttributeId | String | False |
ID of the Attribute associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AlternativePaymentMethod.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| AlternativePaymentMethodNumber | String | True |
AlternativePaymentMethod identification number. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PaymentGatewayId | String | False |
ID of the PaymentGateway associated with this record. | |
| NickName | String | False |
Field containing NickName information. | |
| GatewayToken | String | False |
Token representing the payment method in the payment gateway. | |
| GatewayTokenDetails | String | False |
Additional details about the gateway token. | |
| String | False |
Email address for the contact or person account. | ||
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| Status | String | False |
Status of the record. | |
| CompanyName | String | False |
Field containing CompanyName information. | |
| PaymentMethodStreet | String | False |
Street address for PaymentMethod purposes. | |
| PaymentMethodCity | String | False |
City for PaymentMethod address. | |
| PaymentMethodState | String | False |
State or province for PaymentMethod address. | |
| PaymentMethodPostalCode | String | False |
Postal code for PaymentMethod address. | |
| PaymentMethodCountry | String | False |
Country for PaymentMethod address. | |
| PaymentMethodLatitude | Double | False |
Latitude coordinate for PaymentMethod address geolocation. | |
| PaymentMethodLongitude | Double | False |
Longitude coordinate for PaymentMethod address geolocation. | |
| PaymentMethodGeocodeAccuracy | String | False |
Accuracy level of the geocode for the PaymentMethod address. | |
| Comments | String | False |
Field containing Comments information. | |
| ProcessingMode | String | False |
Mode used for processing the payment. | |
| MacAddress | String | False |
Field containing MacAddress information. | |
| Phone | String | False |
Phone number for the contact or account. | |
| IpAddress | String | False |
Field containing IpAddress information. | |
| AuditEmail | String | False |
Field containing AuditEmail information. | |
| IsAutoPayEnabled | Bool | False |
Indicates whether the record has the AutoPayEnabled characteristic. | |
| PaymentMethodType | String | False |
Type classification for PaymentMethod. | |
| PaymentMethodSubType | String | False |
Type classification for PaymentMethodSub. | |
| PaymentMethodDetails | String | False |
Field containing PaymentMethodDetails information. | |
| Type | String | False |
Type of account or classification. | |
| BillingFirstName | String | False |
Field containing BillingFirstName information. | |
| BillingLastName | String | False |
Field containing BillingLastName information. | |
| BillingName | String | False |
Field containing BillingName information. | |
| BankAccountHolderType | String | True |
Type classification for BankAccountHolder. | |
| BankAccountType | String | True |
Type classification for BankAccount. | |
| StandardEntryClassCode | String | True |
Field containing StandardEntryClassCode information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AnalyticsUserAttrFuncTkn.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| DefinitionName | String | False |
Field containing DefinitionName information. | |
| TokenKey | String | False |
Field containing TokenKey information. | |
| TargetObject | String | False |
Field containing TargetObject information. | |
| TargetObjectField | String | False |
Field containing TargetObjectField information. | |
| ViewerTgtObjRelDesc | String | False |
Field containing ViewerTgtObjRelDesc information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AnalyticsVisualization.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OwnerId | String | False |
User.Id |
ID of the user who owns the record. |
| Version | Double | False |
Field containing Version information. | |
| TemplateSource | String | False |
Field containing TemplateSource information. | |
| TemplateAssetSourceName | String | False |
Field containing TemplateAssetSourceName information. | |
| AnalyticsWorkspaceId | String | False |
ID of the AnalyticsWorkspace associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AnalyticsVizField.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| VisualizationId | String | False |
ID of the Visualization associated with this record. | |
| FieldKey | String | False |
Field containing FieldKey information. | |
| DisplayCategory | String | False |
Field containing DisplayCategory information. | |
| Role | String | False |
Field containing Role information. | |
| Function | String | False |
Field containing Function information. | |
| Type | String | False |
Type of account or classification. | |
| Label | String | False |
Field containing Label information. | |
| SemanticObjectApiName | String | False |
Field containing SemanticObjectApiName information. | |
| SemanticFieldApiName | String | False |
Field containing SemanticFieldApiName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AnalyticsVizViewDef.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OwnerId | String | False |
User.Id |
ID of the user who owns the record. |
| VisualizationId | String | False |
ID of the Visualization associated with this record. | |
| IsOriginal | Bool | False |
Indicates whether the record has the Original characteristic. | |
| Version | Double | False |
Field containing Version information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Announcement.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| FeedItemId | String | False |
FeedItem.Id |
ID of the FeedItem associated with this record. |
| ExpirationDate | Datetime | False |
Date associated with Expiration. | |
| SendEmails | Bool | True |
Field containing SendEmails information. | |
| IsArchived | Bool | False |
Indicates whether the record has the Archived characteristic. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores metadata for Apex classes, which define server-side business logic and custom functionality.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex class. | |
| NamespacePrefix | String | True |
The namespace prefix associated with the Apex class, if part of a managed package. | |
| Name | String | False |
The name of the Apex class. | |
| ApiVersion | Double | False |
The API version the class is compiled against. | |
| Status | String | False |
Current status of the class, such as Active, Inactive, or Deleted. | |
| IsValid | Bool | False |
Indicates whether the Apex class is syntactically valid and saved successfully. | |
| BodyCrc | Double | False |
A checksum value used to detect changes in the body of the Apex class. | |
| Body | String | False |
The full source code of the Apex class. | |
| LengthWithoutComments | Int | False |
The size of the Apex class in characters, excluding comments. | |
| CreatedDate | Datetime | True |
Timestamp of when the class was initially created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the Apex class. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the class. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp used for internal change tracking. | |
| LastModifiedDate | Datetime | True |
Timestamp of the most recent modification to the class. |
Contains metadata for Visualforce components that can be reused in multiple Visualforce pages.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex component. | |
| NamespacePrefix | String | True |
Namespace prefix for the component, used when part of a managed package. | |
| Name | String | False |
The developer-assigned name of the component. | |
| ApiVersion | Double | False |
The Salesforce API version this component is compatible with. | |
| MasterLabel | String | False |
User-friendly label for the Apex component, often used in the UI. | |
| Description | String | False |
Text description of the component's purpose or functionality. | |
| ControllerType | String | False |
Type of controller used by the component, such as Apex class or standard controller. | |
| ControllerKey | String | False |
Reference to the specific controller implementation used by the component. | |
| Markup | String | False |
The Visualforce markup (HTML-like tags) that defines the component's structure and behavior. | |
| CreatedDate | Datetime | True |
Date and time the component was originally created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the Apex component. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last updated the component. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking internal updates and synchronization. | |
| LastModifiedDate | Datetime | True |
Date and time the component was last modified. |
Schema file for ApexEmailNotification.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| String | False |
Email address for the contact or person account. | ||
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Records execution logs for Apex transactions, debugging, and performance monitoring in Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex debug log. | |
| LogUserId | String | True |
User.Id |
ID of the user who generated the log. |
| LogUserIdType | String | False |
Specifies the type of the 'LogUserId' polymorphic field to use in the statement. | |
| LogUserIdExternalFieldName | String | False |
Specifies the external field name of the 'LogUserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| LogLength | Int | True |
Size of the log file in bytes. | |
| Request | String | True |
The type of request that generated the log, such as API call or UI interaction. | |
| Operation | String | True |
The specific operation that was performed, such as login, query, or DML. | |
| Application | String | True |
Name of the application or context where the request originated. | |
| Status | String | True |
Execution status of the request, such as Success or Failed. | |
| DurationMilliseconds | Int | True |
Total time taken to execute the request, measured in milliseconds. | |
| StartTime | Datetime | True |
Time at which the execution that generated the log began. | |
| Location | String | True |
Source location of the request, such as a Salesforce page or API call origin. | |
| RequestIdentifier | String | True |
Field containing RequestIdentifier information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp used for replication and synchronization. | |
| LastModifiedDate | Datetime | True |
Timestamp of when the log was last updated. |
Stores metadata for Visualforce pages, which define custom user interfaces in Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Visualforce page. | |
| NamespacePrefix | String | True |
Prefix associated with the namespace for this page, typically used in managed packages. | |
| Name | String | False |
Name of the Visualforce page. | |
| ApiVersion | Double | False |
The Salesforce API version the page is compatible with. | |
| MasterLabel | String | False |
User-friendly label for the page, shown in the user interface. | |
| Description | String | False |
Optional description providing details about the purpose or function of the page. | |
| ControllerType | String | False |
Specifies the type of controller used by the page, such as standard or custom controller. | |
| ControllerKey | String | False |
Reference to the controller used by the Visualforce page. | |
| IsAvailableInTouch | Bool | False |
Indicates whether the page is available for use in Salesforce mobile apps. | |
| IsConfirmationTokenRequired | Bool | False |
Specifies whether Cross Site Request Forgery (CSRF) protection is enforced for GET requests to this page. | |
| Markup | String | False |
The Visualforce markup that defines the structure and behavior of the page. | |
| CreatedDate | Datetime | True |
Date and time when the page was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the page. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the page. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp used for tracking changes and replication. | |
| LastModifiedDate | Datetime | True |
Date and time when the page was last modified. |
Tracks Apex test executions in the asynchronous test queue, helping developers manage test runs.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex test queue item. | |
| CreatedDate | Datetime | True |
Date and time when the test queue item was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the test queue item. |
| ApexClassId | String | False |
ApexClass.Id |
ID of the Apex class associated with this test execution request. |
| Status | String | False |
Current status of the test queue item, such as Queued or Completed. | |
| ExtendedStatus | String | True |
Detailed status information providing additional context on the execution state. | |
| ParentJobId | String | True |
AsyncApexJob.Id |
ID of the parent Apex job that this test queue item is part of. |
| TestRunResultId | String | True |
ID of the TestRunResult associated with this record. | |
| ShouldSkipCodeCoverage | Bool | False |
Field containing ShouldSkipCodeCoverage information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the most recent update. |
Stores the results of Apex test executions, including success, failure, and error messages.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex test result record. | |
| TestTimestamp | Datetime | False |
Date and time when the test execution began. | |
| Outcome | String | False |
Result of the test method execution, such as Pass or Fail. | |
| ApexClassId | String | False |
ApexClass.Id |
ID of the Apex class that contains the test method. |
| MethodName | String | False |
Name of the test method that was executed. | |
| Message | String | False |
Error message returned if the test failed. | |
| StackTrace | String | False |
Stack trace details associated with any test failures or exceptions. | |
| AsyncApexJobId | String | False |
AsyncApexJob.Id |
ID of the asynchronous job that ran the test. |
| QueueItemId | String | False |
ID of the queue item used to track the test execution request. | |
| ApexLogId | String | False |
ApexLog.Id |
ID of the Apex debug log associated with this test result. |
| ApexTestRunResultId | String | False |
ID of the ApexTestRunResult associated with this record. | |
| RunTime | Int | False |
Field containing RunTime information. | |
| IsTestSetup | Bool | False |
Indicates whether the record has the TestSetup characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent modification. |
Schema file for ApexTestResultLimits.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ApexTestResultId | String | False |
ID of the ApexTestResult associated with this record. | |
| Soql | Int | False |
Specifies a SOQL WHERE clause to filter the records returned. | |
| QueryRows | Int | False |
Field containing QueryRows information. | |
| Sosl | Int | False |
Field containing Sosl information. | |
| Dml | Int | False |
Field containing Dml information. | |
| DmlRows | Int | False |
Field containing DmlRows information. | |
| Cpu | Int | False |
Field containing Cpu information. | |
| Callouts | Int | False |
Field containing Callouts information. | |
| Int | False |
Email address for the contact or person account. | ||
| AsyncCalls | Int | False |
Field containing AsyncCalls information. | |
| MobilePush | Int | False |
Field containing MobilePush information. | |
| LimitContext | String | False |
Field containing LimitContext information. | |
| LimitExceptions | String | False |
Field containing LimitExceptions information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ApexTestRunResult.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| AsyncApexJobId | String | False |
AsyncApexJob.Id |
ID of the AsyncApexJob associated with this record. |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| JobName | String | False |
Field containing JobName information. | |
| IsAllTests | Bool | False |
Indicates whether the record has the AllTests characteristic. | |
| Source | String | False |
Field containing Source information. | |
| StartTime | Datetime | False |
Field containing StartTime information. | |
| EndTime | Datetime | False |
Field containing EndTime information. | |
| TestTime | Int | False |
Field containing TestTime information. | |
| Status | String | False |
Status of the record. | |
| ClassesEnqueued | Int | False |
Field containing ClassesEnqueued information. | |
| ClassesCompleted | Int | False |
Field containing ClassesCompleted information. | |
| MethodsEnqueued | Int | False |
Field containing MethodsEnqueued information. | |
| MethodsCompleted | Int | False |
Field containing MethodsCompleted information. | |
| MethodsFailed | Int | False |
Field containing MethodsFailed information. | |
| TestSetupTime | Int | False |
Field containing TestSetupTime information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ApexTestSuite.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| TestSuiteName | String | False |
Field containing TestSuiteName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Contains metadata for Apex triggers, which automate processes by executing logic when records change.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex trigger. | |
| NamespacePrefix | String | True |
Namespace prefix associated with the trigger, typically used in managed packages. | |
| Name | String | False |
Name assigned to the Apex trigger. | |
| TableEnumOrId | String | False |
Name or ID of the object that the trigger is associated with. | |
| UsageBeforeInsert | Bool | False |
Indicates whether the trigger executes before insert operations. | |
| UsageAfterInsert | Bool | False |
Indicates whether the trigger executes after insert operations. | |
| UsageBeforeUpdate | Bool | False |
Indicates whether the trigger executes before update operations. | |
| UsageAfterUpdate | Bool | False |
Indicates whether the trigger executes after update operations. | |
| UsageBeforeDelete | Bool | False |
Indicates whether the trigger executes before delete operations. | |
| UsageAfterDelete | Bool | False |
Indicates whether the trigger executes after delete operations. | |
| UsageIsBulk | Bool | False |
Indicates whether the trigger is designed to handle bulk data operations. | |
| UsageAfterUndelete | Bool | False |
Indicates whether the trigger executes after a record is undeleted. | |
| ApiVersion | Double | False |
The Salesforce API version the trigger was developed for. | |
| Status | String | False |
Indicates the current status of the trigger, such as Active or Inactive. | |
| IsValid | Bool | False |
Indicates whether the trigger's syntax is valid and compiled successfully. | |
| BodyCrc | Double | False |
Checksum value for the body of the trigger, used for change detection. | |
| Body | String | False |
Apex code that defines the logic of the trigger. | |
| LengthWithoutComments | Int | False |
Character length of the trigger code excluding comments. | |
| CreatedDate | Datetime | True |
Timestamp indicating when the trigger was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the trigger. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the trigger. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp reflecting the last update to the record. | |
| LastModifiedDate | Datetime | True |
Timestamp of the last time the trigger was modified. |
Schema file for ApiAnomalyEventStoreFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for AppAnalyticsQueryRequest.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| DataType | String | False |
Type classification for Data. | |
| StartTime | Datetime | False |
Field containing StartTime information. | |
| EndTime | Datetime | False |
Field containing EndTime information. | |
| RequestState | String | True |
State or province for Request address. | |
| DownloadUrl | String | True |
Field containing DownloadUrl information. | |
| DownloadExpirationTime | Datetime | True |
Field containing DownloadExpirationTime information. | |
| ErrorMessage | String | True |
Field containing ErrorMessage information. | |
| QuerySubmittedTime | Datetime | True |
Field containing QuerySubmittedTime information. | |
| PackageIds | String | False |
Field containing PackageIds information. | |
| OrganizationIds | String | False |
Field containing OrganizationIds information. | |
| DownloadSize | String | True |
Field containing DownloadSize information. | |
| FileCompression | String | False |
Field containing FileCompression information. | |
| AvailableSince | Datetime | False |
Field containing AvailableSince information. | |
| FileType | String | False |
Type classification for File. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Represents approval process instances, tracking workflow approvals and their status in Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the approval request record. | |
| IsDeleted | Boolean | True |
Indicates whether the approval record has been deleted. | |
| ParentId | String | False |
Contract.Id |
ID of the record being submitted for approval, such as an Opportunity or Case. |
| OwnerId | String | False |
User.Id |
ID of the user or queue that currently owns the approval request. |
| CreatedDate | Datetime | True |
Timestamp when the approval request was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who submitted the approval request. |
| LastModifiedDate | Datetime | True |
Timestamp of the most recent update to the approval record. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the approval request. |
| Status | String | False |
Current status of the approval request, such as Pending, Approved, Rejected, or Removed. | |
| RequestComment | String | False |
Optional comment provided by the user when submitting the record for approval. | |
| ApproveComment | String | False |
Optional comment added by the approver when approving or rejecting the request. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last modification to the record. |
Schema file for AppUsageAssignment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| RecordId | String | False |
ID of the Record associated with this record. | |
| RecordIdType | String | False |
Specifies the type of the 'RecordId' polymorphic field to use in the statement. | |
| RecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| AppUsageType | String | False |
Type classification for AppUsage. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Manages customer-owned products, including warranty and support details, for asset tracking.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the asset record. | |
| ContactId | String | False |
Contact.Id |
ID of the contact associated with the asset, typically the end user or owner. |
| AccountId | String | False |
Account.Id |
ID of the account that owns or manages the asset. |
| ParentId | String | False |
Asset.Id |
ID of the parent object in the hierarchy. |
| RootAssetId | String | True |
Asset.Id |
ID of the RootAsset associated with this record. |
| Product2Id | String | False |
Product2.Id |
ID of the product associated with this asset, linking it to a product catalog entry. |
| ProductCode | String | True |
Field containing ProductCode information. | |
| IsCompetitorProduct | Bool | False |
Indicates whether the asset is a competitor's product rather than your own. | |
| CreatedDate | Datetime | True |
Timestamp when the asset record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the asset record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last updated the asset record. |
| IsDeleted | Bool | True |
Indicates whether the asset has been deleted. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| Name | String | False |
Name of the asset, often a reference or product model identifier. | |
| SerialNumber | String | False |
Manufacturer's serial number for the physical asset. | |
| InstallDate | Date | False |
Date when the asset was installed or became operational. | |
| PurchaseDate | Date | False |
Date when the asset was purchased by the customer or account. | |
| UsageEndDate | Date | False |
Expected or actual date when the asset is no longer in use. | |
| LifecycleStartDate | Datetime | True |
Date associated with LifecycleStart. | |
| LifecycleEndDate | Datetime | True |
Date associated with LifecycleEnd. | |
| Status | String | False |
Current lifecycle status of the asset, such as Active, Inactive, or Returned. | |
| Price | Decimal | False |
Monetary value or cost of the asset at the time of sale or installation. | |
| Quantity | Double | False |
Number of units represented by the asset record. | |
| Description | String | False |
Additional details or notes about the asset. | |
| OwnerId | String | False |
User.Id |
ID of the user who owns the record. |
| AssetProvidedById | String | False |
Account.Id |
ID of the AssetProvidedBy associated with this record. |
| AssetServicedById | String | False |
Account.Id |
ID of the AssetServicedBy associated with this record. |
| IsInternal | Bool | False |
Indicates whether the record has the Internal characteristic. | |
| AssetLevel | Int | True |
Field containing AssetLevel information. | |
| StockKeepingUnit | String | True |
Field containing StockKeepingUnit information. | |
| HasLifecycleManagement | Bool | True |
Indicates whether the record has LifecycleManagement. | |
| CurrentMrr | Decimal | True |
Field containing CurrentMrr information. | |
| CurrentLifecycleEndDate | Datetime | True |
Date associated with CurrentLifecycleEnd. | |
| CurrentQuantity | Double | True |
Field containing CurrentQuantity information. | |
| CurrentAmount | Decimal | True |
Field containing CurrentAmount information. | |
| TotalLifecycleAmount | Decimal | True |
Field containing TotalLifecycleAmount information. | |
| Street | String | False |
Street address. | |
| City | String | False |
City portion of the address. | |
| State | String | False |
State or province portion of the address. | |
| PostalCode | String | False |
Postal code portion of the address. | |
| Country | String | False |
Country portion of the address. | |
| Latitude | Double | False |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | False |
Used with Latitude to specify the precise geolocation of an address. | |
| GeocodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last update to any field in the record. | |
| LastModifiedDate | Datetime | True |
Timestamp when the asset record was last modified. |
Logs Chatter activity, including posts and updates, related to Asset records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the asset feed item. | |
| ParentId | String | True |
Asset.Id |
ID of the related asset record that this feed item is associated with. |
| Type | String | True |
Type of the feed item, such as TextPost, ContentPost, or LinkPost. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed post. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
Total number of comments on this feed post. | |
| LikeCount | Int | True |
Total number of likes this feed item has received. | |
| Title | String | True |
Title of the feed post, typically used for link or content posts. | |
| Body | String | True |
Text body or content of the feed item. | |
| LinkUrl | String | True |
URL shared in the feed item, used for link-type posts. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a record that is related to the feed item, such as a case or opportunity. | |
| InsertedById | String | True |
User.Id |
ID of the user who originally inserted the feed item, which may differ from the creator if inserted via automation. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last change to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for AssetRelationship.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| AssetRelationshipNumber | String | True |
AssetRelationship identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| AssetId | String | False |
Asset.Id |
ID of the Asset associated with this record. |
| RelatedAssetId | String | False |
Asset.Id |
ID of the RelatedAsset associated with this record. |
| FromDate | Datetime | False |
Date associated with From. | |
| ToDate | Datetime | False |
Date associated with To. | |
| RelationshipType | String | False |
Type classification for Relationship. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AssetRelationshipFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for AssociatedLocation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| AssociatedLocationNumber | String | True |
AssociatedLocation identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ParentRecordId | String | False |
Account.Id |
ID of the ParentRecord associated with this record. |
| LocationId | String | False |
Location.Id |
ID of the Location associated with this record. |
| Type | String | False |
Type of account or classification. | |
| ActiveFrom | Datetime | False |
Field containing ActiveFrom information. | |
| ActiveTo | Datetime | False |
Field containing ActiveTo information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AsyncOperationLog.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| AsyncOperationNumber | String | True |
AsyncOperation identification number. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ExternalReference | String | True |
Field containing ExternalReference information. | |
| Description | String | True |
Text description of the record. | |
| Status | String | True |
Status of the record. | |
| Type | String | True |
Type of account or classification. | |
| StartedAt | Datetime | True |
Field containing StartedAt information. | |
| FinishedAt | Datetime | True |
Field containing FinishedAt information. | |
| LastStatusUpdateAt | Datetime | True |
Field containing LastStatusUpdateAt information. | |
| Error | String | True |
Field containing Error information. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| RelatedRecordIdType | String | False |
Specifies the type of the 'RelatedRecordId' polymorphic field to use in the statement. | |
| RelatedRecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Request | String | True |
Field containing Request information. | |
| Response | String | True |
Field containing Response information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Stores file attachments related to various Salesforce records, such as accounts, opportunities, or cases.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the attachment record. | |
| IsDeleted | Bool | True |
Indicates whether the attachment has been deleted from Salesforce. | |
| ParentId | String | False |
ID of the parent record the attachment is associated with, such as an Account, Case, or Opportunity. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Name | String | False |
The name of the attached file, including its file extension. | |
| IsPrivate | Bool | False |
Specifies whether the attachment is private. Private attachments are accessible only to the owner and users above them in the role hierarchy. | |
| ContentType | String | False |
The MIME type of the attached file, such as application/pdf or image/jpeg. | |
| BodyLength | Int | True |
The size of the attached file, in bytes. | |
| Body | String | False |
The file content of the attachment, stored in Base64 format. | |
| OwnerId | String | False |
ID of the user who owns the attachment. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| CreatedDate | Datetime | True |
Date and time when the attachment was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the attachment. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the attachment. |
| LastModifiedByIdType | String | False |
Specifies the type of the 'LastModifiedById' polymorphic field to use in the statement. | |
| LastModifiedByIdExternalFieldName | String | False |
Specifies the external field name of the 'LastModifiedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Description | String | False |
Optional text description providing additional details about the attachment. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| FullPath | String | False |
Pseudo column which is used to fill a attachment#TEMP temporary table, which is then used to upload multiple attachments using the Uploadattachment stored procedure. See documentation for an example. | |
| FolderPath | String | False |
Pseudo column which is used to fill a attachment#TEMP temporary table, which is then used to upload multiple attachments using the Uploadattachment stored procedure. See documentation for an example. | |
| Base64Data | String | False |
Pseudo column which is used to fill a attachment#TEMP temporary table, which is then used to upload multiple attachments using the Uploadattachment stored procedure. See documentation for an example. | |
| ObjectId | String | False |
Pseudo column which is used to fill a attachment#TEMP temporary table, which is then used to upload multiple attachments using the Uploadattachment stored procedure. See documentation for an example. | |
| FileName | String | False |
Pseudo column which is used to fill a attachment#TEMP temporary table, which is then used to upload multiple attachments using the Uploadattachment stored procedure. See documentation for an example. | |
| LightningMode | String | False |
Pseudo column which is used to fill a attachment#TEMP temporary table, which is then used to upload multiple attachments using the Uploadattachment stored procedure. See documentation for an example. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system-level update to the attachment record. | |
| LastModifiedDate | Datetime | True |
Date and time when the attachment was last modified. |
Schema file for AuraDefinition.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| AuraDefinitionBundleId | String | False |
ID of the AuraDefinitionBundle associated with this record. | |
| DefType | String | False |
Type classification for Def. | |
| Format | String | False |
Field containing Format information. | |
| Source | String | False |
Field containing Source information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AuraDefinitionBundle.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ApiVersion | Double | False |
Field containing ApiVersion information. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AuthConfigProviders.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| AuthConfigId | String | False |
AuthConfig.Id |
ID of the AuthConfig associated with this record. |
| AuthProviderId | String | False |
ID of the AuthProvider associated with this record. | |
| AuthProviderIdType | String | False |
Specifies the type of the 'AuthProviderId' polymorphic field to use in the statement. | |
| AuthProviderIdExternalFieldName | String | False |
Specifies the external field name of the 'AuthProviderId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for AuthorizationForm.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| RevisionNumber | String | False |
Revision identification number. | |
| EffectiveFromDate | Date | False |
Date associated with EffectiveFrom. | |
| EffectiveToDate | Date | False |
Date associated with EffectiveTo. | |
| DefaultAuthFormTextId | String | False |
ID of the DefaultAuthFormText associated with this record. | |
| IsSignatureRequired | Bool | False |
Indicates whether the record has the SignatureRequired characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AuthorizationFormConsent.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ConsentGiverId | String | False |
ID of the ConsentGiver associated with this record. | |
| ConsentGiverIdType | String | False |
Specifies the type of the 'ConsentGiverId' polymorphic field to use in the statement. | |
| ConsentGiverIdExternalFieldName | String | False |
Specifies the external field name of the 'ConsentGiverId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| AuthorizationFormTextId | String | False |
ID of the AuthorizationFormText associated with this record. | |
| ConsentCapturedSource | String | False |
Field containing ConsentCapturedSource information. | |
| ConsentCapturedSourceType | String | False |
Type classification for ConsentCapturedSource. | |
| ConsentCapturedDateTime | Datetime | False |
Field containing ConsentCapturedDateTime information. | |
| Status | String | False |
Status of the record. | |
| DocumentVersionId | String | False |
ID of the DocumentVersion associated with this record. | |
| RelatedRecordId | String | False |
Account.Id |
ID of the record associated with this feed item. |
| RelatedRecordIdType | String | False |
Specifies the type of the 'RelatedRecordId' polymorphic field to use in the statement. | |
| RelatedRecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AuthorizationFormDataUse.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| AuthorizationFormId | String | False |
ID of the AuthorizationForm associated with this record. | |
| DataUsePurposeId | String | False |
ID of the DataUsePurpose associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AuthorizationFormText.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| AuthorizationFormId | String | False |
ID of the AuthorizationForm associated with this record. | |
| FullAuthorizationFormUrl | String | False |
Field containing FullAuthorizationFormUrl information. | |
| SummaryAuthFormText | String | False |
Field containing SummaryAuthFormText information. | |
| Locale | String | False |
Field containing Locale information. | |
| LocaleSelection | String | False |
Field containing LocaleSelection information. | |
| ContentDocumentId | String | False |
ID of the ContentDocument associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for AuthorizationFormTextFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Contains settings for authentication providers, allowing integration with third-party login systems.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the authentication provider configuration. | |
| CreatedDate | Datetime | True |
Date and time when the authentication provider record was created. | |
| ProviderType | String | False |
Type of authentication provider, such as Google, Facebook, OpenID Connect, or a custom provider. | |
| FriendlyName | String | False |
Display name used to identify the authentication provider in the Salesforce UI. | |
| DeveloperName | String | False |
Unique URL suffix used in the authentication provider's callback URL. | |
| RegistrationHandlerId | String | False |
ApexClass.Id |
ID of the Apex class used to handle new user registration and login for the authentication provider. |
| ExecutionUserId | String | False |
User.Id |
ID of the Salesforce user under whose context unauthenticated API requests are executed. |
| ConsumerKey | String | False |
OAuth client ID used to authenticate with the external identity provider. | |
| ConsumerSecret | String | False |
OAuth client secret used to authenticate with the external identity provider. | |
| ErrorUrl | String | False |
Custom URL to redirect users to if authentication fails. | |
| AuthorizeUrl | String | False |
URL used to initiate the OAuth authorization flow with the external identity provider. | |
| TokenUrl | String | False |
URL used to obtain the OAuth access token from the external identity provider. | |
| UserInfoUrl | String | False |
URL used to retrieve user profile information from the external identity provider. | |
| DefaultScopes | String | False |
Default OAuth scopes requested during the authentication process. | |
| IdTokenIssuer | String | False |
Field containing IdTokenIssuer information. | |
| OptionsSendAccessTokenInHeader | Bool | False |
Field containing OptionsSendAccessTokenInHeader information. | |
| OptionsSendClientCredentialsInHeader | Bool | False |
Field containing OptionsSendClientCredentialsInHeader information. | |
| OptionsIncludeOrgIdInId | Bool | False |
ID of the OptionsIncludeOrgIdIn associated with this record. | |
| OptionsSendSecretInApis | Bool | False |
Field containing OptionsSendSecretInApis information. | |
| OptionsIsMuleSoftUS | Bool | False |
Field containing OptionsIsMuleSoftUS information. | |
| OptionsIsMuleSoftEU | Bool | False |
Field containing OptionsIsMuleSoftEU information. | |
| OptionsRequireMfa | Bool | False |
Field containing OptionsRequireMfa information. | |
| OptionsIsSegmentIntelligence | Bool | False |
Field containing OptionsIsSegmentIntelligence information. | |
| OptionsIsPkceEnabled | Bool | False |
Field containing OptionsIsPkceEnabled information. | |
| OptionsIsWebDataConnector | Bool | False |
Field containing OptionsIsWebDataConnector information. | |
| OptionsIsBitbucket | Bool | False |
Field containing OptionsIsBitbucket information. | |
| OptionsIsEmiSnapchatAds | Bool | False |
Field containing OptionsIsEmiSnapchatAds information. | |
| OptionsIsEmi | Bool | False |
Field containing OptionsIsEmi information. | |
| OptionsIsEmiTikTokAds | Bool | False |
Field containing OptionsIsEmiTikTokAds information. | |
| IconUrl | String | False |
Field containing IconUrl information. | |
| LogoutUrl | String | False |
Field containing LogoutUrl information. | |
| PluginId | String | False |
ApexClass.Id |
ID of the Plugin associated with this record. |
| CustomMetadataTypeRecord | String | False |
Field containing CustomMetadataTypeRecord information. | |
| EcKey | String | False |
Field containing EcKey information. | |
| AppleTeam | String | False |
Field containing AppleTeam information. | |
| FlowDefaultProfileId | String | False |
Profile.Id |
ID of the FlowDefaultProfile associated with this record. |
| FlowDefaultAccountId | String | False |
Account.Id |
ID of the FlowDefaultAccount associated with this record. |
| SsoKickoffUrl | String | True |
Field containing SsoKickoffUrl information. | |
| LinkKickoffUrl | String | True |
Field containing LinkKickoffUrl information. | |
| OauthKickoffUrl | String | True |
Field containing OauthKickoffUrl information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for AuthProvParamFwdAllowlist.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| AuthProviderId | String | False |
AuthProvider.Id |
ID of the AuthProvider associated with this record. |
| Param | String | False |
Field containing Param information. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Tracks login sessions and authentication details for Salesforce users.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the authentication session. | |
| UsersId | String | True |
User.Id |
ID of the user associated with the session. |
| NumSecondsValid | Int | True |
Duration in seconds for which the session is valid. | |
| UserType | String | True |
Type of user associated with the session, such as standard, guest, or system. | |
| SourceIp | String | True |
IP address from which the session originated. | |
| LoginType | String | True |
Method used to authenticate the session, such as UI login, OAuth, or API. | |
| SessionType | String | True |
Category of the session, such as UI, API, or Remote Access. | |
| SessionSecurityLevel | String | True |
Security level assigned to the session, which determines access and authentication requirements. | |
| LogoutUrl | String | True |
Field containing LogoutUrl information. | |
| ParentId | String | True |
AuthSession.Id |
ID of the parent object in the hierarchy. |
| LoginHistoryId | String | True |
LoginHistory.Id |
ID of the related login history record. |
| LoginGeoId | String | True |
LoginGeo.Id |
ID of the LoginGeo associated with this record. |
| IsCurrent | Bool | True |
Indicates whether the record has the Current characteristic. | |
| IsAssociatedWithJwtAccessToken | Bool | True |
Indicates whether the record has the AssociatedWithJwtAccessToken characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LastModifiedDate | Datetime | True |
Timestamp when the session was last modified or refreshed. | |
| CreatedDate | Datetime | True |
Timestamp when the session was created. |
Schema file for BrandingSet.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for BrandingSetProperty.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| BrandingSetId | String | False |
BrandingSet.Id |
ID of the BrandingSet associated with this record. |
| PropertyName | String | False |
Field containing PropertyName information. | |
| PropertyValue | String | False |
Field containing PropertyValue information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores branding elements and templates for customizing the appearance of Salesforce communities and emails.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the brand template record. | |
| Name | String | False |
Display name of the brand template, used for identification. | |
| DeveloperName | String | False |
Unique API name for the brand template, typically used in code or integrations. | |
| IsActive | Bool | False |
Indicates whether the brand template is currently active and in use. | |
| Description | String | False |
Optional description providing details about the brand template's purpose or usage. | |
| Value | String | False |
The content or HTML markup associated with the brand template. | |
| NamespacePrefix | String | True |
Namespace prefix associated with the brand template, typically used in managed packages. | |
| CreatedDate | Datetime | True |
Date and time when the brand template was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the brand template. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the brand template. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp used by Salesforce to track the last modification of the record for replication and synchronization. | |
| LastModifiedDate | Datetime | True |
Date and time when the brand template was last modified. |
Schema file for BriefcaseAssignment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UserOrGroupId | String | False |
ID of the UserOrGroup associated with this record. | |
| UserOrGroupIdType | String | False |
Specifies the type of the 'UserOrGroupId' polymorphic field to use in the statement. | |
| UserOrGroupIdExternalFieldName | String | False |
Specifies the external field name of the 'UserOrGroupId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BriefcaseId | String | False |
ID of the Briefcase associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for BrowserPolicyViolation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | True |
The unique name used by the API and managed packages. | |
| Language | String | True |
Language of the record or user interface. | |
| MasterLabel | String | True |
The custom object label that appears in the user interface. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UntrustedUrl | String | True |
Field containing UntrustedUrl information. | |
| ViolationContext | String | True |
Field containing ViolationContext information. | |
| ViolationType | String | True |
Type classification for Violation. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for BusinessBrand.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| OrgId | String | False |
ID of the Org associated with this record. | |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Defines business hours used in case escalation rules, Service-level Agreement (SLA) calculations, and time-based workflows.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the business hours record. | |
| Name | String | False |
Name of the business hours entry, used for identification. | |
| IsActive | Bool | False |
Indicates whether the business hours are currently active. | |
| IsDefault | Bool | False |
Indicates whether these are the default business hours for the organization. | |
| SundayStartTime | Time | False |
Start time for business hours on Sunday. | |
| SundayEndTime | Time | False |
End time for business hours on Sunday. | |
| MondayStartTime | Time | False |
Start time for business hours on Monday. | |
| MondayEndTime | Time | False |
End time for business hours on Monday. | |
| TuesdayStartTime | Time | False |
Start time for business hours on Tuesday. | |
| TuesdayEndTime | Time | False |
End time for business hours on Tuesday. | |
| WednesdayStartTime | Time | False |
Start time for business hours on Wednesday. | |
| WednesdayEndTime | Time | False |
End time for business hours on Wednesday. | |
| ThursdayStartTime | Time | False |
Start time for business hours on Thursday. | |
| ThursdayEndTime | Time | False |
End time for business hours on Thursday. | |
| FridayStartTime | Time | False |
Start time for business hours on Friday. | |
| FridayEndTime | Time | False |
End time for business hours on Friday. | |
| SaturdayStartTime | Time | False |
Start time for business hours on Saturday. | |
| SaturdayEndTime | Time | False |
End time for business hours on Saturday. | |
| TimeZoneSidKey | String | False |
Time zone associated with the business hours configuration. | |
| CreatedDate | Datetime | True |
Date and time when the business hours record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the business hours record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the business hours record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp used for system synchronization and replication. | |
| LastModifiedDate | Datetime | True |
Date and time when the business hours record was last modified. |
Represents a business process, such as lead or case management, defining different record paths.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the business process record. | |
| Name | String | False |
Name of the business process used to distinguish it from others. | |
| NamespacePrefix | String | True |
Namespace prefix associated with the business process, typically used in managed packages. | |
| Description | String | False |
Text description providing details about the business process. | |
| TableEnumOrId | String | False |
API name or ID of the object (such as Opportunity or Case) the business process is associated with. | |
| IsActive | Bool | False |
Indicates whether the business process is currently active. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the business process. |
| CreatedDate | Datetime | True |
Date and time when the business process was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the business process. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp used by the system to track the last modification for data replication. | |
| LastModifiedDate | Datetime | True |
Date and time when the business process was last updated. |
Schema file for CalendarView.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| IsDisplayed | Bool | False |
Indicates whether the record has the Displayed characteristic. | |
| Color | String | False |
Field containing Color information. | |
| FillPattern | String | False |
Field containing FillPattern information. | |
| ListViewFilterId | String | False |
ListView.Id |
ID of the ListViewFilter associated with this record. |
| DateHandlingType | String | True |
Type classification for DateHandling. | |
| StartField | String | False |
Field containing StartField information. | |
| EndField | String | False |
Field containing EndField information. | |
| DisplayField | String | False |
Field containing DisplayField information. | |
| SobjectType | String | False |
Type classification for Sobject. | |
| PublisherId | String | False |
ID of the Publisher associated with this record. | |
| PublisherIdType | String | False |
Specifies the type of the 'PublisherId' polymorphic field to use in the statement. | |
| PublisherIdExternalFieldName | String | False |
Specifies the external field name of the 'PublisherId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Contains metadata for call center configurations, integrating Salesforce with telephony systems.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the call center configuration record. | |
| Name | String | False |
Display name of the call center used within Salesforce. | |
| InternalName | String | False |
Internal system name used to reference the call center configuration programmatically. | |
| Version | Double | False |
Version number of the call center definition, typically used for tracking adapter compatibility. | |
| AdapterUrl | String | False |
URL to the Computer Telephony Integration (CTI) adapter that facilitates communication between Salesforce and the telephony system. | |
| CustomSettings | String | False |
Additional custom configuration settings for the call center adapter, typically defined in XML format. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the call center configuration. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the call center configuration. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the most recent modification to the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the call center configuration was last updated. | |
| CreatedDate | Datetime | True |
Date and time when the call center configuration was created. |
Schema file for CallCoachingMediaProvider.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ProviderName | String | False |
Field containing ProviderName information. | |
| ProviderDescription | String | False |
Field containing ProviderDescription information. | |
| IsActive | Bool | True |
Indicates whether the record is active. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Captures Chatter posts and activity updates related to Campaign records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the campaign feed item. | |
| ParentId | String | True |
Campaign.Id |
ID of the campaign record this feed item is associated with. |
| Type | String | True |
Specifies the type of feed item, such as text post, link, or file. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted (true) or is active (false). | |
| CommentCount | Int | True |
Number of comments made on the feed item. | |
| LikeCount | Int | True |
Number of likes the feed item has received. | |
| Title | String | True |
Title or subject line of the feed item, if applicable. | |
| Body | String | True |
Main content or message body of the feed item. | |
| LinkUrl | String | True |
URL shared in the feed item, if the item includes a link. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the Salesforce record referenced or mentioned in the feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user or process that inserted the feed item, which may differ from the creator. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-maintained timestamp for tracking the latest modification. | |
| LastModifiedDate | Datetime | True |
Timestamp of the last update to the feed item. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Links leads and contacts to campaigns, tracking participation and response details.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the campaign member record. | |
| IsDeleted | Bool | True |
Indicates whether the campaign member record has been deleted (true) or is active (false). | |
| CampaignId | String | False |
Campaign.Id |
ID of the campaign associated with the member. |
| LeadId | String | False |
Lead.Id |
ID of the lead associated with this campaign member, if applicable. |
| ContactId | String | False |
Contact.Id |
ID of the contact associated with this campaign member, if applicable. |
| Status | String | False |
Current status of the campaign member, such as Sent, Responded, or Attended. | |
| HasResponded | Bool | True |
Indicates whether the lead or contact has responded to the campaign. | |
| CreatedDate | Datetime | True |
Date and time when the campaign member record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the campaign member record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the campaign member record. |
| FirstRespondedDate | Date | True |
Date and time when the lead or contact first responded to the campaign. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| Salutation | String | True |
Honorific abbreviation, word, or phrase to be used in front of the name in greetings. | |
| Name | String | True |
Name of the record. | |
| FirstName | String | True |
First name of the contact or person account. | |
| LastName | String | True |
Last name of the contact or person account. Required for person accounts. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Street | String | True |
Street address. | |
| City | String | True |
City portion of the address. | |
| State | String | True |
State or province portion of the address. | |
| PostalCode | String | True |
Postal code portion of the address. | |
| Country | String | True |
Country portion of the address. | |
| String | True |
Email address for the contact or person account. | ||
| Phone | String | True |
Phone number for the contact or account. | |
| Fax | String | True |
Fax number for the contact or account. | |
| MobilePhone | String | True |
Contact's mobile phone number. | |
| Description | String | True |
Text description of the record. | |
| DoNotCall | Bool | True |
Indicates that the contact does not want to receive calls. | |
| HasOptedOutOfEmail | Bool | True |
Indicates whether the contact has opted out of email communications. | |
| HasOptedOutOfFax | Bool | True |
Indicates whether the contact has opted out of fax communications. | |
| LeadSource | String | True |
Source from which the lead was obtained. | |
| CompanyOrAccount | String | True |
Number of CompanyOrAc associated with this record. | |
| Type | String | True |
Type of account or classification. | |
| LeadOrContactId | String | True |
ID of the LeadOrContact associated with this record. | |
| LeadOrContactOwnerId | String | True |
ID of the LeadOrContactOwner associated with this record. | |
| LeadOrContactOwnerIdType | String | False |
Specifies the type of the 'LeadOrContactOwnerId' polymorphic field to use in the statement. | |
| LeadOrContactOwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'LeadOrContactOwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-maintained timestamp for tracking the latest modification. | |
| LastModifiedDate | Datetime | True |
Date and time when the campaign member record was last updated. |
Schema file for CardPaymentMethod.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CardPaymentMethodNumber | String | True |
Masked credit card number for the payment method. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| DisplayCardNumber | String | True |
DisplayCard identification number. | |
| ExpiryMonth | Int | False |
Field containing ExpiryMonth information. | |
| ExpiryYear | Int | False |
Field containing ExpiryYear information. | |
| StartMonth | Int | False |
Field containing StartMonth information. | |
| StartYear | Int | False |
Field containing StartYear information. | |
| CardType | String | False |
Type of credit card (Visa, MasterCard, etc.). | |
| CardTypeCategory | String | True |
Field containing CardTypeCategory information. | |
| AutoCardType | String | False |
Type classification for AutoCard. | |
| CardCategory | String | False |
Category of the credit card (credit, debit, prepaid). | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| PaymentMethodStreet | String | False |
Street address for PaymentMethod purposes. | |
| PaymentMethodCity | String | False |
City for PaymentMethod address. | |
| PaymentMethodState | String | False |
State or province for PaymentMethod address. | |
| PaymentMethodPostalCode | String | False |
Postal code for PaymentMethod address. | |
| PaymentMethodCountry | String | False |
Country for PaymentMethod address. | |
| PaymentMethodLatitude | Double | False |
Latitude coordinate for PaymentMethod address geolocation. | |
| PaymentMethodLongitude | Double | False |
Longitude coordinate for PaymentMethod address geolocation. | |
| PaymentMethodGeocodeAccuracy | String | False |
Accuracy level of the geocode for the PaymentMethod address. | |
| NickName | String | False |
Field containing NickName information. | |
| CardHolderName | String | False |
Field containing CardHolderName information. | |
| CardBin | Int | False |
Bank Identification Number (BIN) of the credit card. | |
| CardLastFour | Int | False |
Last four digits of the credit card number. | |
| String | False |
Email address for the contact or person account. | ||
| Comments | String | False |
Field containing Comments information. | |
| Status | String | False |
Status of the record. | |
| InputCardNumber | String | False |
InputCard identification number. | |
| CardHolderFirstName | String | False |
Field containing CardHolderFirstName information. | |
| CardHolderLastName | String | False |
Field containing CardHolderLastName information. | |
| CompanyName | String | False |
Field containing CompanyName information. | |
| GatewayToken | String | False |
Token representing the payment method in the payment gateway. | |
| GatewayTokenDetails | String | False |
Additional details about the gateway token. | |
| PaymentGatewayId | String | False |
ID of the PaymentGateway associated with this record. | |
| ProcessingMode | String | False |
Mode used for processing the payment. | |
| MacAddress | String | False |
Field containing MacAddress information. | |
| Phone | String | False |
Phone number for the contact or account. | |
| IpAddress | String | False |
Field containing IpAddress information. | |
| AuditEmail | String | False |
Field containing AuditEmail information. | |
| GatewayResultCode | String | False |
Result code returned by the payment gateway. | |
| GatewayResultCodeDescription | String | False |
Field containing GatewayResultCodeDescription information. | |
| SfResultCode | String | False |
Salesforce-specific result code for the transaction. | |
| GatewayDate | Datetime | False |
Date associated with Gateway. | |
| GatewayTokenEncrypted | String | False |
Field containing GatewayTokenEncrypted information. | |
| IsAutoPayEnabled | Bool | False |
Indicates whether the record has the AutoPayEnabled characteristic. | |
| PaymentMethodType | String | False |
Type classification for PaymentMethod. | |
| PaymentMethodSubType | String | False |
Type classification for PaymentMethodSub. | |
| PaymentMethodDetails | String | False |
Field containing PaymentMethodDetails information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Manages customer service and support cases, tracking issues, resolutions, and customer interactions.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case record. | |
| IsDeleted | Bool | True |
Indicates whether the case has been deleted (true) or is active (false). | |
| MasterRecordId | String | True |
Case.Id |
If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. |
| CaseNumber | String | True |
Auto-generated number that uniquely identifies the case. | |
| ContactId | String | False |
Contact.Id |
ID of the contact associated with the case. |
| AccountId | String | False |
Account.Id |
ID of the account associated with the case. |
| AssetId | String | False |
Asset.Id |
ID of the asset related to the case, such as a product or equipment. |
| ParentId | String | False |
Case.Id |
ID of the parent Case. |
| SuppliedName | String | False |
Name provided by the customer when the case was submitted. | |
| SuppliedEmail | String | False |
Email address provided by the customer when submitting the case. | |
| SuppliedPhone | String | False |
Phone number provided by the customer when submitting the case. | |
| SuppliedCompany | String | False |
Company name provided by the customer during case submission. | |
| Type | String | False |
Category or type of the case, such as Question, Problem, or Feature Request. | |
| Status | String | False |
Current status of the case, such as New, Working, or Closed. | |
| Reason | String | False |
Reason the case was opened, such as Installation or Breakdown. | |
| Origin | String | False |
Source of the case submission, such as Email, Phone, or Web. | |
| Subject | String | False |
Short title or summary of the case. | |
| Priority | String | False |
Indicates the urgency of the case, such as High, Medium, or Low. | |
| Description | String | False |
Detailed description of the issue or inquiry reported in the case. | |
| IsClosed | Bool | True |
Indicates whether the case has been closed (true) or is still open (false). | |
| ClosedDate | Datetime | True |
Date and time when the case was closed. | |
| IsEscalated | Bool | False |
Indicates whether the case has been escalated for higher-level attention. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| OwnerId | String | False |
ID of the user or queue that owns the case. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| CreatedDate | Datetime | True |
Date and time when the case was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the case. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the case. |
| ContactPhone | String | True |
Field containing ContactPhone information. | |
| ContactMobile | String | True |
Field containing ContactMobile information. | |
| ContactEmail | String | True |
Field containing ContactEmail information. | |
| ContactFax | String | True |
Field containing ContactFax information. | |
| Comments | String | False |
Field containing Comments information. | |
| LastViewedDate | Datetime | True |
Date and time when the case was last viewed by the current user. | |
| LastReferencedDate | Datetime | True |
Date and time when the case was last accessed through a reference, such as a related record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| TriggerAutoResponseEmail | Bool | False |
Indicates whether to trigger auto-response rules (true) or not (false), for leads and cases. | |
| TriggerOtherEmail | Bool | False |
Indicates whether to trigger email outside the organization (true) or not (false). | |
| TriggerUserEmail | Bool | False |
Indicates whether to trigger email that is sent to users in the organization (true) or not (false). | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the case record. | |
| LastModifiedDate | Datetime | True |
Date and time when the case was last updated. |
Stores comments added by support agents or customers to case records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case comment record. | |
| ParentId | String | False |
Case.Id |
ID of the case the comment is associated with. |
| IsPublished | Bool | False |
Indicates whether the comment is visible to customers via a self-service portal. | |
| CommentBody | String | False |
Text content of the comment added to the case. | |
| CommentBodyRichtext | String | False |
Field containing CommentBodyRichtext information. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the comment. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| CreatedDate | Datetime | True |
Date and time when the comment was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the comment. |
| LastModifiedByIdType | String | False |
Specifies the type of the 'LastModifiedById' polymorphic field to use in the statement. | |
| LastModifiedByIdExternalFieldName | String | False |
Specifies the external field name of the 'LastModifiedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the comment has been deleted (true) or is active (false). | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| TriggerAutoResponseEmail | Bool | False |
Indicates whether to trigger auto-response rules (true) or not (false), for leads and cases. | |
| TriggerOtherEmail | Bool | False |
Indicates whether to trigger email outside the organization (true) or not (false). | |
| TriggerUserEmail | Bool | False |
Indicates whether to trigger email that is sent to users in the organization (true) or not (false). | |
| SystemModstamp | Datetime | True |
Timestamp for the last system update to the comment record. | |
| LastModifiedDate | Datetime | True |
Date and time when the comment was last modified. |
Defines the relationship between a contact and a case, specifying their role in the case process.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case contact role record. | |
| CasesId | String | False |
Case.Id |
ID of the case that the contact is associated with. |
| ContactId | String | False |
Contact.Id |
ID of the contact assigned a role on the case. |
| Role | String | False |
The role the contact plays in relation to the case, such as decision maker or primary contact. | |
| CreatedDate | Datetime | True |
Date and time when the case contact role was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the case contact role. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the case contact role. |
| IsDeleted | Bool | True |
Indicates whether the case contact role has been deleted (true) or is active (false). | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for the most recent system update to the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the case contact role was last modified. |
Captures Chatter activity, including posts and updates, related to case records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case feed item. | |
| ParentId | String | True |
Case.Id |
ID of the case this feed item is associated with. |
| Type | String | True |
Specifies the type of feed item, such as text post, link, or file upload. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted (true) or not (false). | |
| CommentCount | Int | True |
Total number of comments associated with this feed item. | |
| LikeCount | Int | True |
Total number of likes this feed item has received. | |
| Title | String | True |
Title of the feed item, if applicable. | |
| Body | String | True |
Main content or message of the feed item. | |
| LinkUrl | String | True |
URL link included in the feed item, if applicable. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a record related to this feed item, such as a task or event. | |
| InsertedById | String | True |
User.Id |
ID of the user who inserted the feed item into the feed, which could differ from the creator in automated processes. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the most recent system update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for CaseMilestone.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| CaseId | String | True |
Case.Id |
ID of the Case associated with this record. |
| StartDate | Datetime | False |
Start date for the record or activity. | |
| TargetDate | Datetime | True |
Date associated with Target. | |
| CompletionDate | Datetime | False |
Date associated with Completion. | |
| MilestoneTypeId | String | True |
ID of the MilestoneType associated with this record. | |
| IsCompleted | Bool | True |
Indicates whether the task has been completed. | |
| IsViolated | Bool | True |
Indicates whether the record has the Violated characteristic. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| TargetResponseInMins | Int | True |
Field containing TargetResponseInMins information. | |
| TargetResponseInHrs | Double | True |
Field containing TargetResponseInHrs information. | |
| TargetResponseInDays | Double | True |
Field containing TargetResponseInDays information. | |
| TimeRemainingInMins | String | True |
Field containing TimeRemainingInMins information. | |
| TimeRemainingInHrs | String | True |
Field containing TimeRemainingInHrs information. | |
| TimeRemainingInDays | Double | True |
Field containing TimeRemainingInDays information. | |
| ElapsedTimeInMins | Int | True |
Field containing ElapsedTimeInMins information. | |
| ElapsedTimeInHrs | Double | True |
Field containing ElapsedTimeInHrs information. | |
| ElapsedTimeInDays | Double | True |
Field containing ElapsedTimeInDays information. | |
| TimeSinceTargetInMins | String | True |
Field containing TimeSinceTargetInMins information. | |
| TimeSinceTargetInHrs | String | True |
Field containing TimeSinceTargetInHrs information. | |
| TimeSinceTargetInDays | Double | True |
Field containing TimeSinceTargetInDays information. | |
| BusinessHoursId | String | True |
ID of the business hours associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Links solutions to cases, helping support agents provide quick resolutions to customer issues.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case-solution association record. | |
| CaseId | String | False |
Case.Id |
ID of the case linked to the solution. |
| SolutionId | String | False |
Solution.Id |
ID of the solution linked to the case. |
| CreatedById | String | True |
User.Id |
ID of the user who created the association between the case and the solution. |
| IsDeleted | Bool | True |
Indicates whether the case-solution association record has been deleted (true) or not (false). | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for the last system update to the association record. | |
| CreatedDate | Datetime | True |
Date and time when the case-solution association was created. |
Stores details about team members assigned to work on a case record.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case team member record. | |
| ParentId | String | False |
Case.Id |
ID of the case that this team member is assigned to. |
| MemberId | String | False |
ID of the user, partner, or queue assigned as a team member on the case. | |
| MemberIdType | String | False |
Specifies the type of the 'MemberId' polymorphic field to use in the statement. | |
| MemberIdExternalFieldName | String | False |
Specifies the external field name of the 'MemberId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| TeamTemplateMemberId | String | True |
ID of the team template member this record was created from, if applicable. | |
| TeamRoleId | String | False |
CaseTeamRole.Id |
ID representing the specific role of the team member on the case. |
| TeamTemplateId | String | True |
ID of the TeamTemplate associated with this record. | |
| CreatedDate | Datetime | True |
Date and time when the case team member record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the case team member record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the case team member record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the most recent system update to the case team member record. | |
| LastModifiedDate | Datetime | True |
Date and time when the case team member record was last modified. |
Defines roles assigned to team members working on case records, such as Support Rep or Manager.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case team role record. | |
| Name | String | False |
Name of the role assigned to members of the case team. | |
| AccessLevel | String | False |
The level of access granted to team members with this role, such as Read or Read/Write. | |
| PreferencesVisibleInCSP | Bool | False |
Indicates whether this role is visible in the Customer Portal (true) or hidden (false). | |
| CreatedDate | Datetime | True |
Date and time when the case team role was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the case team role. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the case team role. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the most recent system update to the case team role. | |
| LastModifiedDate | Datetime | True |
Date and time when the case team role was last modified. |
Manages predefined templates for case teams, allowing standardized team assignments.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case team template record. | |
| Name | String | False |
Name of the case team template, used to define a reusable group of case team members. | |
| Description | String | False |
Text description of the case team template, providing details about its purpose or usage. | |
| CreatedDate | Datetime | True |
Date and time when the case team template was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the case team template. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the case team template. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the most recent system update to the case team template record. | |
| LastModifiedDate | Datetime | True |
Date and time when the case team template was last modified. |
Stores members of a case Team Template, defining their roles and permissions.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case team template member record. | |
| TeamTemplateId | String | False |
ID of the case team template this member belongs to. | |
| MemberId | String | False |
ID of the user, group, or queue assigned as a member of the case team template. | |
| TeamRoleId | String | False |
CaseTeamRole.Id |
ID of the role assigned to this member within the team template. |
| CreatedDate | Datetime | True |
Date and time when the case team template member was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the case team template member. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the case team template member. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the latest update to this record. | |
| LastModifiedDate | Datetime | True |
Date and time when the case team template member was last modified. |
Links Case Team Templates to specific case records, applying predefined team structures.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the case team template record. | |
| ParentId | String | False |
Case.Id |
ID of the case associated with this team template record. |
| TeamTemplateId | String | False |
ID of the case team template applied to the case. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the case team template record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the most recent update to this record. | |
| CreatedDate | Datetime | True |
Date and time when the case team template record was created. |
Stores structured data related to categories used in Salesforce Knowledge or other categorization features.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the category data record. | |
| CategoryNodeId | String | False |
CategoryNode.Id |
ID of the category node associated with this data record. |
| RelatedSobjectId | String | False |
Solution.Id |
ID of the related Salesforce object that this category data is linked to. |
| IsDeleted | Bool | True |
Indicates whether the category data record has been deleted. | |
| CreatedDate | Datetime | True |
Date and time when the category data record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the category data record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the category data record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the most recent update to this record. | |
| LastModifiedDate | Datetime | True |
Date and time when the category data record was last modified. |
Represents hierarchical category structures used for organizing knowledge articles and content.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the category node. | |
| ParentId | String | False |
CategoryNode.Id |
ID of the parent category node, used to define the hierarchical structure of categories. |
| MasterLabel | String | False |
Display name of the category node. | |
| SortOrder | Int | False |
Position of this category node relative to its siblings, determining the display order. | |
| SortStyle | String | False |
Specifies how the subcategories under this category should be sorted. | |
| CreatedDate | Datetime | True |
Date and time when the category node was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the category node. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the category node. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last update to this record. | |
| LastModifiedDate | Datetime | True |
Date and time when the category node was last modified. |
Schema file for ChatterExtension.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| IsProtected | Bool | False |
Indicates whether the component is protected or not. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ExtensionName | String | False |
Field containing ExtensionName information. | |
| Type | String | False |
Type of account or classification. | |
| IconId | String | False |
ContentAsset.Id |
ID of the Icon associated with this record. |
| Description | String | False |
Text description of the record. | |
| CompositionComponentEnumOrId | String | False |
ID of the CompositionComponentEnumOr associated with this record. | |
| RenderComponentEnumOrId | String | False |
ID of the RenderComponentEnumOr associated with this record. | |
| HoverText | String | False |
Field containing HoverText information. | |
| HeaderText | String | False |
Field containing HeaderText information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ChatterExtensionConfig.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ChatterExtensionId | String | False |
ID of the ChatterExtension associated with this record. | |
| CanCreate | Bool | False |
Indicates whether the user can create records. | |
| CanRead | Bool | False |
Indicates whether the user can view records. | |
| Position | Int | False |
Field containing Position information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Identifies the browser used to access Salesforce, useful for tracking user activity and compatibility.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the client browser record. | |
| UsersId | String | True |
User.Id |
ID of the user associated with the client browser session. |
| FullUserAgent | String | True |
Complete user agent string that identifies the browser, operating system, and device. | |
| ProxyInfo | String | True |
Information about the proxy server, if used during the session. | |
| LastUpdate | Datetime | True |
Timestamp of the most recent update to this client browser record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | True |
Date and time when the client browser record was initially created. |
Stores details about Chatter groups used for collaboration and discussion within Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the collaboration group. | |
| Name | String | False |
The name of the collaboration group. | |
| MemberCount | Int | True |
The number of members currently in the group. | |
| OwnerId | String | False |
User.Id |
ID of the user who owns or created the group. |
| CollaborationType | String | False |
Specifies the group's access level, such as Public or Private. | |
| Description | String | False |
A brief description outlining the purpose or focus of the group. | |
| CreatedDate | Datetime | True |
The date and time when the group was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the group. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the group. |
| FullPhotoUrl | String | True |
URL of the group's full-sized photo or logo. | |
| MediumPhotoUrl | String | True |
Field containing MediumPhotoUrl information. | |
| SmallPhotoUrl | String | True |
URL of the group's thumbnail-sized photo. | |
| LastFeedModifiedDate | Datetime | True |
The date and time when the group's feed was last updated. | |
| InformationTitle | String | False |
Title of the additional information or announcement shown in the group. | |
| InformationBody | String | False |
Body content of the group's additional information or announcement. | |
| HasPrivateFieldsAccess | Bool | True |
Indicates whether the user has access to private fields in the group. | |
| CanHaveGuests | Bool | False |
Specifies whether external users (guests) are allowed in the group. | |
| LastViewedDate | Datetime | True |
The last time this group was viewed by the current user. | |
| LastReferencedDate | Datetime | True |
The last time this group was referenced by the current user. | |
| IsArchived | Bool | False |
Indicates whether the group has been archived. | |
| IsAutoArchiveDisabled | Bool | False |
Indicates whether automatic archiving for the group is disabled. | |
| AnnouncementId | String | False |
Announcement.Id |
ID of the Announcement associated with this record. |
| GroupEmail | String | True |
Field containing GroupEmail information. | |
| BannerPhotoUrl | String | True |
Field containing BannerPhotoUrl information. | |
| IsBroadcast | Bool | False |
Indicates whether the record has the Broadcast characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the group record. | |
| LastModifiedDate | Datetime | True |
The date and time when the group was last modified. |
Captures Chatter activity, including posts and updates, related to Collaboration Groups.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the collaboration group feed item. | |
| ParentId | String | True |
ID of the collaboration group this feed item is associated with. | |
| Type | String | True |
Specifies the type of feed item, such as a post, poll, or link. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
The number of comments associated with the feed item. | |
| LikeCount | Int | True |
The number of likes the feed item has received. | |
| Title | String | True |
The title of the feed item, if applicable. | |
| Body | String | True |
The main text content of the feed item. | |
| LinkUrl | String | True |
The URL of any link shared in the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a record related to the feed item, if one exists. | |
| InsertedById | String | True |
User.Id |
ID of the user who inserted the feed item on behalf of another user or system. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the feed item. | |
| LastModifiedDate | Datetime | True |
The date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
The date and time when the feed item was created. |
Manages group membership, listing users who belong to Chatter collaboration groups.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the collaboration group member record. | |
| CollaborationGroupId | String | False |
ID of the collaboration group the member belongs to. | |
| MemberId | String | False |
User.Id |
ID of the user who is a member of the collaboration group. |
| CollaborationRole | String | False |
Role of the member within the group, such as standard member or manager. | |
| NotificationFrequency | String | False |
Frequency at which the member receives notifications from the group, such as daily or every post. | |
| CreatedDate | Datetime | True |
The date and time when the member was added to the collaboration group. | |
| CreatedById | String | True |
User.Id |
ID of the user who added the member to the group. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the member record. |
| LastFeedAccessDate | Datetime | True |
Date associated with LastFeedAccess. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the member record. | |
| LastModifiedDate | Datetime | True |
The date and time when the member record was last modified. |
Tracks pending requests to join Chatter groups requiring approval.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the collaboration group membership request. | |
| CollaborationGroupId | String | False |
ID of the collaboration group the user has requested to join. | |
| RequesterId | String | False |
User.Id |
ID of the user who submitted the request to join the group. |
| ResponseMessage | String | False |
Optional message included in the group's response to the membership request. | |
| Status | String | False |
Current status of the membership request, such as Pending, Approved, or Rejected. | |
| CreatedDate | Datetime | True |
The date and time when the membership request was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the membership request. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the membership request. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the membership request record. | |
| LastModifiedDate | Datetime | True |
The date and time when the request record was last modified. |
Schema file for CollaborationGroupRecord.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| CollaborationGroupId | String | False |
ID of the CollaborationGroup associated with this record. | |
| RecordId | String | False |
ID of the Record associated with this record. | |
| RecordIdType | String | False |
Specifies the type of the 'RecordId' polymorphic field to use in the statement. | |
| RecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Manages invitations sent to external users to join Salesforce Chatter groups.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the collaboration invitation record. | |
| ParentId | String | True |
ID of the parent record associated with the invitation, such as a collaboration group. | |
| SharedEntityId | String | False |
ID of the entity being shared with the invited user, such as a file or group. | |
| InviterId | String | True |
User.Id |
ID of the user who sent the collaboration invitation. |
| InvitedUserEmail | String | False |
Email address of the user being invited to collaborate. | |
| InvitedUserEmailNormalized | String | True |
Normalized version of the invited user's email address for consistency in matching. | |
| Status | String | True |
Current status of the invitation, such as Sent, Accepted, or Expired. | |
| OptionalMessage | String | False |
Optional message included with the invitation, usually from the inviter. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the collaboration invitation. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the invitation record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for the most recent system update to the invitation record. | |
| LastModifiedDate | Datetime | True |
Date and time when the invitation record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the collaboration invitation was created. |
Schema file for CollaborationRoom.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PlatformKey | String | False |
Field containing PlatformKey information. | |
| TeamKey | String | False |
Field containing TeamKey information. | |
| IsAutoJoin | Bool | False |
Indicates whether the record has the AutoJoin characteristic. | |
| IsArchived | Bool | False |
Indicates whether the record has the Archived characteristic. | |
| IsExternal | Bool | False |
Indicates whether the record has the External characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CommSubscription.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CommSubscriptionChannelType.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| CommunicationSubscriptionId | String | False |
ID of the CommunicationSubscription associated with this record. | |
| EngagementChannelTypeId | String | False |
ID of the EngagementChannelType associated with this record. | |
| DataUsePurposeId | String | True |
ID of the DataUsePurpose associated with this record. | |
| MessagingChannelId | String | False |
ID of the MessagingChannel associated with this record. | |
| MessagingChannelUsageId | String | False |
ID of the MessagingChannelUsage associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CommSubscriptionChannelTypeFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for CommSubscriptionConsent.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ConsentGiverId | String | False |
ID of the ConsentGiver associated with this record. | |
| ConsentGiverIdType | String | False |
Specifies the type of the 'ConsentGiverId' polymorphic field to use in the statement. | |
| ConsentGiverIdExternalFieldName | String | False |
Specifies the external field name of the 'ConsentGiverId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ContactPointId | String | False |
ID of the ContactPoint associated with this record. | |
| ContactPointIdType | String | False |
Specifies the type of the 'ContactPointId' polymorphic field to use in the statement. | |
| ContactPointIdExternalFieldName | String | False |
Specifies the external field name of the 'ContactPointId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| EffectiveFromDate | Date | False |
Date associated with EffectiveFrom. | |
| ConsentCapturedDateTime | Datetime | False |
Field containing ConsentCapturedDateTime information. | |
| ConsentCapturedSource | String | False |
Field containing ConsentCapturedSource information. | |
| CommSubscriptionChannelTypeId | String | False |
ID of the CommSubscriptionChannelType associated with this record. | |
| PartyRoleId | String | False |
ID of the PartyRole associated with this record. | |
| PartyRoleIdType | String | False |
Specifies the type of the 'PartyRoleId' polymorphic field to use in the statement. | |
| PartyRoleIdExternalFieldName | String | False |
Specifies the external field name of the 'PartyRoleId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BusinessBrandId | String | False |
ID of the BusinessBrand associated with this record. | |
| PrivacyConsentStatus | String | False |
Status of the PrivacyConsent. | |
| DataUsePurposeId | String | False |
ID of the DataUsePurpose associated with this record. | |
| EngagementChannelTypeId | String | False |
ID of the EngagementChannelType associated with this record. | |
| PartyId | String | True |
Individual.Id |
ID of the Party associated with this record. |
| ContactPointValue | String | False |
Field containing ContactPointValue information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CommSubscriptionConsentFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for CommSubscriptionFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for CommSubscriptionTiming.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| CommSubscriptionConsentId | String | False |
ID of the CommSubscriptionConsent associated with this record. | |
| Unit | String | False |
Field containing Unit information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CommSubscriptionTimingFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for ConferenceNumber.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ExternalEventId | String | False |
ID of the ExternalEvent associated with this record. | |
| Label | String | False |
Field containing Label information. | |
| Number | String | False |
identification number. | |
| AccessCode | String | False |
Field containing AccessCode information. | |
| Vendor | String | False |
Field containing Vendor information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ConsumptionRate.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ConsumptionScheduleId | String | False |
ID of the ConsumptionSchedule associated with this record. | |
| Description | String | False |
Text description of the record. | |
| ProcessingOrder | Int | False |
Field containing ProcessingOrder information. | |
| PricingMethod | String | False |
Field containing PricingMethod information. | |
| LowerBound | Int | False |
Field containing LowerBound information. | |
| UpperBound | Int | False |
Field containing UpperBound information. | |
| Price | Decimal | False |
Field containing Price information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ConsumptionSchedule.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| Description | String | False |
Text description of the record. | |
| BillingTerm | Int | False |
Field containing BillingTerm information. | |
| BillingTermUnit | String | False |
Field containing BillingTermUnit information. | |
| Type | String | False |
Type of account or classification. | |
| UnitOfMeasure | String | False |
Field containing UnitOfMeasure information. | |
| RatingMethod | String | False |
Field containing RatingMethod information. | |
| MatchingAttribute | String | False |
Field containing MatchingAttribute information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ConsumptionScheduleFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Holds details about individuals associated with accounts, tracking communication and relationships.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the contact. | |
| IsDeleted | Bool | True |
Indicates whether the contact has been deleted (true) or not (false). | |
| MasterRecordId | String | True |
Contact.Id |
ID of the master record if the contact is part of a merge operation. |
| AccountId | String | False |
Account.Id |
ID of the related account associated with the contact. |
| IsPersonAccount | Bool | True |
Indicates whether this account is a person account. | |
| LastName | String | False |
Last name of the contact. | |
| FirstName | String | False |
First name of the contact. | |
| Salutation | String | False |
Salutation for the contact, such as Mr., Ms., or Dr. | |
| Name | String | True |
Full name of the contact, automatically generated from first and last names. | |
| RecordTypeId | String | False |
RecordType.Id |
ID of the record type assigned to this object. |
| OtherStreet | String | False |
Street address for the contact's alternate (other) location. | |
| OtherCity | String | False |
City for the contact's alternate (other) location. | |
| OtherState | String | False |
State or province for the contact's alternate (other) location. | |
| OtherPostalCode | String | False |
ZIP or postal code for the contact's alternate (other) location. | |
| OtherCountry | String | False |
Country for the contact's alternate (other) location. | |
| OtherLatitude | Double | False |
Latitude for the contact's alternate (other) location, used for mapping and geolocation. | |
| OtherLongitude | Double | False |
Longitude for the contact's alternate (other) location, used for mapping and geolocation. | |
| OtherGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Other address. | |
| MailingStreet | String | False |
Street address for the contact's mailing address. | |
| MailingCity | String | False |
City for the contact's mailing address. | |
| MailingState | String | False |
State or province for the contact's mailing address. | |
| MailingPostalCode | String | False |
ZIP or postal code for the contact's mailing address. | |
| MailingCountry | String | False |
Country for the contact's mailing address. | |
| MailingLatitude | Double | False |
Latitude for the contact's mailing address, used for mapping and geolocation. | |
| MailingLongitude | Double | False |
Longitude for the contact's mailing address, used for mapping and geolocation. | |
| MailingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Mailing address. | |
| Phone | String | False |
Primary business phone number for the contact. | |
| Fax | String | False |
Business fax number for the contact. | |
| MobilePhone | String | False |
Mobile phone number for the contact. | |
| HomePhone | String | False |
Home phone number for the contact. | |
| OtherPhone | String | False |
Alternate phone number for the contact. | |
| AssistantPhone | String | False |
Phone number of the contact's assistant. | |
| ReportsToId | String | False |
Contact.Id |
ID of another contact to whom this contact reports. |
| String | False |
Email address of the contact. | ||
| Title | String | False |
Job title of the contact. | |
| Department | String | False |
Department associated with the contact. | |
| AssistantName | String | False |
Name of the contact's assistant. | |
| LeadSource | String | False |
Source from which the contact was obtained, such as Web or Referral. | |
| Birthdate | Date | False |
Date of birth of the contact. | |
| Description | String | False |
Additional notes or descriptive information about the contact. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| OwnerId | String | False |
User.Id |
ID of the user who owns this contact record. |
| CreatedDate | Datetime | True |
Date and time when the contact was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the contact record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the contact record. |
| LastActivityDate | Date | True |
Date of the last activity associated with the contact, such as a task or event. | |
| LastCURequestDate | Datetime | True |
Date when the last stay-in-touch request was sent to the contact. | |
| LastCUUpdateDate | Datetime | True |
Date when the contact last responded to a stay-in-touch update request. | |
| LastViewedDate | Datetime | True |
Most recent date and time the contact record was viewed. | |
| LastReferencedDate | Datetime | True |
Most recent date and time the contact record was referenced by a related record or process. | |
| EmailBouncedReason | String | False |
Reason why an email sent to this contact bounced. | |
| EmailBouncedDate | Datetime | False |
Date and time when the email to the contact bounced. | |
| IsEmailBounced | Bool | True |
Indicates whether an email to this contact has bounced (true) or not (false). | |
| PhotoUrl | String | True |
URL for the contact's photo. | |
| Jigsaw | String | False |
Unique identifier for the contact in Data.com (now a legacy product). | |
| JigsawContactId | String | True |
ID of the contact in Data.com, used for data enrichment. | |
| CleanStatus | String | False |
Indicates the record's clean status compared with Data.com. | |
| IndividualId | String | False |
Individual.Id |
ID of the data privacy record associated with this contact. |
| IsPriorityRecord | Bool | True |
Indicates whether the record has the PriorityRecord characteristic. | |
| ContactSource | String | False |
Field containing ContactSource information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| TriggerAutoResponseEmail | Bool | False |
Indicates whether to trigger auto-response rules (true) or not (false), for leads and cases. | |
| TriggerOtherEmail | Bool | False |
Indicates whether to trigger email outside the organization (true) or not (false). | |
| TriggerUserEmail | Bool | False |
Indicates whether to trigger email that is sent to users in the organization (true) or not (false). | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the contact record. | |
| LastModifiedDate | Datetime | True |
Date and time when the contact record was last modified. |
Schema file for ContactCleanInfo.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ContactId | String | True |
Contact.Id |
ID of the Contact associated with this record. |
| LastMatchedDate | Datetime | True |
Date associated with LastMatched. | |
| LastStatusChangedDate | Datetime | True |
Date associated with LastStatusChanged. | |
| LastStatusChangedById | String | True |
User.Id |
ID of the LastStatusChangedBy associated with this record. |
| IsInactive | Bool | False |
Indicates whether the record has the Inactive characteristic. | |
| FirstName | String | True |
First name of the contact or person account. | |
| LastName | String | True |
Last name of the contact or person account. Required for person accounts. | |
| String | True |
Email address for the contact or person account. | ||
| Phone | String | True |
Phone number for the contact or account. | |
| Street | String | True |
Street address. | |
| City | String | True |
City portion of the address. | |
| State | String | True |
State or province portion of the address. | |
| PostalCode | String | True |
Postal code portion of the address. | |
| Country | String | True |
Country portion of the address. | |
| Latitude | Double | True |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | True |
Used with Latitude to specify the precise geolocation of an address. | |
| GeocodeAccuracy | String | True |
Accuracy level of the geocode for the address. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| ContactStatusDataDotCom | String | True |
Field containing ContactStatusDataDotCom information. | |
| IsReviewedName | Bool | False |
Indicates whether the record has the ReviewedName characteristic. | |
| IsReviewedEmail | Bool | False |
Indicates whether the record has the ReviewedEmail characteristic. | |
| IsReviewedPhone | Bool | False |
Indicates whether the record has the ReviewedPhone characteristic. | |
| IsReviewedAddress | Bool | False |
Indicates whether the record has the ReviewedAddress characteristic. | |
| IsReviewedTitle | Bool | False |
Indicates whether the record has the ReviewedTitle characteristic. | |
| IsDifferentFirstName | Bool | True |
Indicates whether the record has the DifferentFirstName characteristic. | |
| IsDifferentLastName | Bool | True |
Indicates whether the record has the DifferentLastName characteristic. | |
| IsDifferentEmail | Bool | True |
Indicates whether the record has the DifferentEmail characteristic. | |
| IsDifferentPhone | Bool | True |
Indicates whether the record has the DifferentPhone characteristic. | |
| IsDifferentStreet | Bool | True |
Indicates whether the record has the DifferentStreet characteristic. | |
| IsDifferentCity | Bool | True |
Indicates whether the record has the DifferentCity characteristic. | |
| IsDifferentState | Bool | True |
Indicates whether the record has the DifferentState characteristic. | |
| IsDifferentPostalCode | Bool | True |
Indicates whether the record has the DifferentPostalCode characteristic. | |
| IsDifferentCountry | Bool | True |
Indicates whether the record has the DifferentCountry characteristic. | |
| IsDifferentTitle | Bool | True |
Indicates whether the record has the DifferentTitle characteristic. | |
| IsDifferentStateCode | Bool | True |
Indicates whether the record has the DifferentStateCode characteristic. | |
| IsDifferentCountryCode | Bool | True |
Indicates whether the record has the DifferentCountryCode characteristic. | |
| CleanedByJob | Bool | True |
Field containing CleanedByJob information. | |
| CleanedByUser | Bool | True |
Field containing CleanedByUser information. | |
| IsFlaggedWrongName | Bool | False |
Indicates whether the record has the FlaggedWrongName characteristic. | |
| IsFlaggedWrongEmail | Bool | False |
Indicates whether the record has the FlaggedWrongEmail characteristic. | |
| IsFlaggedWrongPhone | Bool | False |
Indicates whether the record has the FlaggedWrongPhone characteristic. | |
| IsFlaggedWrongAddress | Bool | False |
Indicates whether the record has the FlaggedWrongAddress characteristic. | |
| IsFlaggedWrongTitle | Bool | False |
Indicates whether the record has the FlaggedWrongTitle characteristic. | |
| DataDotComId | String | True |
ID of the DataDotCom associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Captures Chatter activity, including posts and updates, related to Contact records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the Contact feed item. | |
| ParentId | String | True |
Contact.Id |
ID of the contact record that this feed item is associated with. |
| Type | String | True |
Type of feed item, such as TextPost, LinkPost, ContentPost, or PollPost. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted (true) or not (false). | |
| CommentCount | Int | True |
Number of comments associated with this feed item. | |
| LikeCount | Int | True |
Number of likes this feed item has received. | |
| Title | String | True |
Title or subject of the feed item. | |
| Body | String | True |
Main text content of the feed item. | |
| LinkUrl | String | True |
URL included in the feed item, if applicable. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a record related to the feed item, such as an opportunity or case. | |
| InsertedById | String | True |
User.Id |
ID of the user or process that inserted the feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for ContactPointAddress.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ActiveFromDate | Date | False |
Date associated with ActiveFrom. | |
| ActiveToDate | Date | False |
Date associated with ActiveTo. | |
| BestTimeToContactEndTime | Time | False |
Field containing BestTimeToContactEndTime information. | |
| BestTimeToContactStartTime | Time | False |
Field containing BestTimeToContactStartTime information. | |
| BestTimeToContactTimezone | String | False |
Field containing BestTimeToContactTimezone information. | |
| IsPrimary | Bool | False |
Indicates whether the record has the Primary characteristic. | |
| ContactPointPhoneId | String | False |
ID of the ContactPointPhone associated with this record. | |
| AddressType | String | False |
Type classification for Address. | |
| Street | String | False |
Street address. | |
| City | String | False |
City portion of the address. | |
| State | String | False |
State or province portion of the address. | |
| PostalCode | String | False |
Postal code portion of the address. | |
| Country | String | False |
Country portion of the address. | |
| Latitude | Double | False |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | False |
Used with Latitude to specify the precise geolocation of an address. | |
| GeocodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| IsDefault | Bool | False |
Indicates whether the record has the Default characteristic. | |
| PreferenceRank | Int | False |
Field containing PreferenceRank information. | |
| UsageType | String | False |
Type classification for Usage. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContactPointConsent.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ContactPointId | String | False |
ID of the ContactPoint associated with this record. | |
| ContactPointIdType | String | False |
Specifies the type of the 'ContactPointId' polymorphic field to use in the statement. | |
| ContactPointIdExternalFieldName | String | False |
Specifies the external field name of the 'ContactPointId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| DataUsePurposeId | String | False |
ID of the DataUsePurpose associated with this record. | |
| PrivacyConsentStatus | String | False |
Status of the PrivacyConsent. | |
| EffectiveFrom | Datetime | False |
Field containing EffectiveFrom information. | |
| EffectiveTo | Datetime | False |
Field containing EffectiveTo information. | |
| CaptureDate | Datetime | False |
Date associated with Capture. | |
| CaptureContactPointType | String | False |
Type classification for CaptureContactPoint. | |
| CaptureSource | String | False |
Field containing CaptureSource information. | |
| DoubleConsentCaptureDate | Datetime | False |
Date associated with DoubleConsentCapture. | |
| PartyRoleId | String | False |
ID of the PartyRole associated with this record. | |
| PartyRoleIdType | String | False |
Specifies the type of the 'PartyRoleId' polymorphic field to use in the statement. | |
| PartyRoleIdExternalFieldName | String | False |
Specifies the external field name of the 'PartyRoleId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BusinessBrandId | String | False |
ID of the BusinessBrand associated with this record. | |
| PartyId | String | True |
Individual.Id |
ID of the Party associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContactPointEmail.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ActiveFromDate | Date | False |
Date associated with ActiveFrom. | |
| ActiveToDate | Date | False |
Date associated with ActiveTo. | |
| BestTimeToContactEndTime | Time | False |
Field containing BestTimeToContactEndTime information. | |
| BestTimeToContactStartTime | Time | False |
Field containing BestTimeToContactStartTime information. | |
| BestTimeToContactTimezone | String | False |
Field containing BestTimeToContactTimezone information. | |
| IsPrimary | Bool | False |
Indicates whether the record has the Primary characteristic. | |
| EmailAddress | String | False |
Field containing EmailAddress information. | |
| EmailMailBox | String | False |
Field containing EmailMailBox information. | |
| EmailDomain | String | False |
Field containing EmailDomain information. | |
| EmailLatestBounceDateTime | Datetime | False |
Field containing EmailLatestBounceDateTime information. | |
| EmailLatestBounceReasonText | String | False |
Field containing EmailLatestBounceReasonText information. | |
| PreferenceRank | Int | False |
Field containing PreferenceRank information. | |
| UsageType | String | False |
Type classification for Usage. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContactPointPhone.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ActiveFromDate | Date | False |
Date associated with ActiveFrom. | |
| ActiveToDate | Date | False |
Date associated with ActiveTo. | |
| BestTimeToContactEndTime | Time | False |
Field containing BestTimeToContactEndTime information. | |
| BestTimeToContactStartTime | Time | False |
Field containing BestTimeToContactStartTime information. | |
| BestTimeToContactTimezone | String | False |
Field containing BestTimeToContactTimezone information. | |
| IsPrimary | Bool | False |
Indicates whether the record has the Primary characteristic. | |
| AreaCode | String | False |
Field containing AreaCode information. | |
| TelephoneNumber | String | False |
Telephone identification number. | |
| ExtensionNumber | String | False |
Extension identification number. | |
| PhoneType | String | False |
Type classification for Phone. | |
| IsSmsCapable | Bool | False |
Indicates whether the record has the SmsCapable characteristic. | |
| FormattedInternationalPhoneNumber | String | False |
FormattedInternationalPhone identification number. | |
| FormattedNationalPhoneNumber | String | False |
FormattedNationalPhone identification number. | |
| IsFaxCapable | Bool | False |
Indicates whether the record has the FaxCapable characteristic. | |
| IsPersonalPhone | Bool | False |
Indicates whether the record has the PersonalPhone characteristic. | |
| IsBusinessPhone | Bool | False |
Indicates whether the record has the BusinessPhone characteristic. | |
| PreferenceRank | Int | False |
Field containing PreferenceRank information. | |
| UsageType | String | False |
Type classification for Usage. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContactPointTypeConsent.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PartyId | String | False |
Individual.Id |
ID of the Party associated with this record. |
| ContactPointType | String | False |
Type classification for ContactPoint. | |
| DataUsePurposeId | String | False |
ID of the DataUsePurpose associated with this record. | |
| PrivacyConsentStatus | String | False |
Status of the PrivacyConsent. | |
| EffectiveFrom | Datetime | False |
Field containing EffectiveFrom information. | |
| EffectiveTo | Datetime | False |
Field containing EffectiveTo information. | |
| CaptureDate | Datetime | False |
Date associated with Capture. | |
| CaptureContactPointType | String | False |
Type classification for CaptureContactPoint. | |
| CaptureSource | String | False |
Field containing CaptureSource information. | |
| DoubleConsentCaptureDate | Datetime | False |
Date associated with DoubleConsentCapture. | |
| PartyRoleId | String | False |
ID of the PartyRole associated with this record. | |
| PartyRoleIdType | String | False |
Specifies the type of the 'PartyRoleId' polymorphic field to use in the statement. | |
| PartyRoleIdExternalFieldName | String | False |
Specifies the external field name of the 'PartyRoleId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BusinessBrandId | String | False |
ID of the BusinessBrand associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContactRequest.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| WhatId | String | False |
ID of the What associated with this record. | |
| WhatIdType | String | False |
Specifies the type of the 'WhatId' polymorphic field to use in the statement. | |
| WhatIdExternalFieldName | String | False |
Specifies the external field name of the 'WhatId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| WhoId | String | False |
ID of the Who associated with this record. | |
| WhoIdType | String | False |
Specifies the type of the 'WhoId' polymorphic field to use in the statement. | |
| WhoIdExternalFieldName | String | False |
Specifies the external field name of the 'WhoId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| PreferredPhone | String | False |
Field containing PreferredPhone information. | |
| PreferredChannel | String | False |
Field containing PreferredChannel information. | |
| Status | String | False |
Status of the record. | |
| RequestReason | String | False |
Field containing RequestReason information. | |
| RequestDescription | String | False |
Field containing RequestDescription information. | |
| IsCallback | Bool | False |
Indicates whether the record has the Callback characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentAsset.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ContentDocumentId | String | True |
ID of the ContentDocument associated with this record. | |
| IsVisibleByExternalUsers | Bool | False |
Indicates whether the record has the VisibleByExternalUsers characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentDistribution.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| OwnerId | String | False |
User.Id |
ID of the user who owns the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Name | String | False |
Name of the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| ContentVersionId | String | False |
ID of the ContentVersion associated with this record. | |
| ContentDocumentId | String | True |
ID of the ContentDocument associated with this record. | |
| RelatedRecordId | String | False |
ID of the record associated with this feed item. | |
| RelatedRecordIdType | String | False |
Specifies the type of the 'RelatedRecordId' polymorphic field to use in the statement. | |
| RelatedRecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| PreferencesAllowPDFDownload | Bool | False |
Field containing PreferencesAllowPDFDownload information. | |
| PreferencesAllowOriginalDownload | Bool | False |
Field containing PreferencesAllowOriginalDownload information. | |
| PreferencesPasswordRequired | Bool | False |
Field containing PreferencesPasswordRequired information. | |
| PreferencesNotifyOnVisit | Bool | False |
Field containing PreferencesNotifyOnVisit information. | |
| PreferencesLinkLatestVersion | Bool | False |
Field containing PreferencesLinkLatestVersion information. | |
| PreferencesAllowViewInBrowser | Bool | False |
Field containing PreferencesAllowViewInBrowser information. | |
| PreferencesExpires | Bool | False |
Field containing PreferencesExpires information. | |
| PreferencesNotifyRndtnComplete | Bool | False |
Field containing PreferencesNotifyRndtnComplete information. | |
| ExpiryDate | Datetime | False |
Date associated with Expiry. | |
| Password | String | True |
Field containing Password information. | |
| ViewCount | Int | True |
Number of View associated with this record. | |
| FirstViewDate | Datetime | True |
Date associated with FirstView. | |
| LastViewDate | Datetime | True |
Date associated with LastView. | |
| DistributionPublicUrl | String | True |
Field containing DistributionPublicUrl information. | |
| ContentDownloadUrl | String | True |
Field containing ContentDownloadUrl information. | |
| PdfDownloadUrl | String | True |
Field containing PdfDownloadUrl information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentDistributionView.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| DistributionId | String | True |
ID of the Distribution associated with this record. | |
| ParentViewId | String | True |
ID of the ParentView associated with this record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| IsInternal | Bool | True |
Indicates whether the record has the Internal characteristic. | |
| IsDownload | Bool | True |
Indicates whether the record has the Download characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. |
Stores documents uploaded to Salesforce, such as files attached to records or stored in libraries.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the content document. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the content document. |
| CreatedDate | Datetime | True |
Date and time when the content document was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the content document. |
| IsArchived | Bool | False |
Indicates whether the content document is archived (true) or not (false). | |
| ArchivedById | String | True |
User.Id |
ID of the user who archived the content document. |
| ArchivedDate | Date | True |
Date and time when the content document was archived. | |
| IsDeleted | Bool | True |
Indicates whether the content document has been deleted (true) or not (false). | |
| OwnerId | String | False |
User.Id |
ID of the owner of the content document. |
| Title | String | False |
Title of the content document. | |
| PublishStatus | String | True |
Status of the document's publishing state, such as 'Published' or 'Draft'. | |
| LatestPublishedVersionId | String | True |
ID of the most recently published version of the document. | |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| LastViewedDate | Datetime | True |
Date and time when the content document was last viewed. | |
| LastReferencedDate | Datetime | True |
Date and time when the content document was last referenced. | |
| Description | String | False |
Text description of the record. | |
| ContentSize | Int | True |
Field containing ContentSize information. | |
| FileType | String | True |
Type classification for File. | |
| FileExtension | String | True |
Field containing FileExtension information. | |
| SharingOption | String | False |
Field containing SharingOption information. | |
| SharingPrivacy | String | False |
Field containing SharingPrivacy information. | |
| ContentModifiedDate | Datetime | True |
Date associated with ContentModified. | |
| ContentAssetId | String | False |
ContentAsset.Id |
ID of the ContentAsset associated with this record. |
| IsInternalOnly | Bool | False |
Indicates whether the record has the InternalOnly characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| FullPath | String | False |
Pseudo column which is used to fill a contentdocument#TEMP temporary table, which is then used to upload multiple contentdocuments using the Uploadcontentdocument stored procedure. See documentation for an example. | |
| FolderPath | String | False |
Pseudo column which is used to fill a contentdocument#TEMP temporary table, which is then used to upload multiple contentdocuments using the Uploadcontentdocument stored procedure. See documentation for an example. | |
| Base64Data | String | False |
Pseudo column which is used to fill a contentdocument#TEMP temporary table, which is then used to upload multiple contentdocuments using the Uploadcontentdocument stored procedure. See documentation for an example. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the last modification. | |
| LastModifiedDate | Datetime | True |
Date and time when the content document was last modified. |
Captures Chatter activity, including posts and updates, related to Content Documents.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the content document feed item. | |
| ParentId | String | True |
ID of the parent record associated with this feed item. | |
| Type | String | True |
Type of feed item, such as TextPost, ContentPost, or LinkPost. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted (true) or not (false). | |
| CommentCount | Int | True |
Number of comments posted on the feed item. | |
| LikeCount | Int | True |
Number of likes received by the feed item. | |
| Title | String | True |
Title of the feed post, typically used with content or link posts. | |
| Body | String | True |
Main content or message body of the feed item. | |
| LinkUrl | String | True |
URL associated with the feed post, if any. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record related to the feed item, such as a case or opportunity. | |
| InsertedById | String | True |
User.Id |
ID of the user or process that inserted the feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the last modification. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Links Content Documents to multiple records, allowing files to be associated with various objects.
The Salesforce Cloud requires filtering on Id, ContentDocumentId, or LinkedEntityId to perform the query.
Either of the following operators can be used when creating a filter or WHERE clause. For example:
SELECT * FROM ContentDocumentLink WHERE Id = 'your value' SELECT * FROM ContentDocumentLink WHERE ContentDocumentId = 'your value' SELECT * FROM ContentDocumentLink WHERE LinkedEntityId = 'your value'
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the content document link record. | |
| LinkedEntityId | String | False |
ID of the record (such as a user, group, or object) the content document is linked to. | |
| LinkedEntityIdType | String | False |
Specifies the type of the 'LinkedEntityId' polymorphic field to use in the statement. | |
| LinkedEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'LinkedEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ContentDocumentId | String | False |
ID of the content document associated with this link. | |
| IsDeleted | Bool | True |
Indicates whether the link record has been deleted (true) or not (false). | |
| ShareType | String | False |
Level of access granted to the linked entity. For example, 'V' for viewer, 'C' for collaborator, or 'I' for inferred permission. | |
| Visibility | String | False |
Field containing Visibility information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the link record was last modified. |
Schema file for ContentDocumentSubscription.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| UserId | String | True |
User.Id |
ID of the User associated with this record. |
| ContentDocumentId | String | True |
ID of the ContentDocument associated with this record. | |
| IsCommentSub | Bool | True |
Indicates whether the record has the CommentSub characteristic. | |
| IsDocumentSub | Bool | True |
Indicates whether the record has the DocumentSub characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ContentFolder.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ParentContentFolderId | String | False |
ID of the ParentContentFolder associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentFolderMember.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentContentFolderId | String | False |
ID of the ParentContentFolder associated with this record. | |
| ChildRecordId | String | True |
ID of the ChildRecord associated with this record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentNote.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Title | String | False |
Title of the contact or person, for example CEO or Vice President. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ContentModifiedDate | Datetime | True |
Date associated with ContentModified. | |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| FileType | String | True |
Type classification for File. | |
| TextPreview | String | True |
Field containing TextPreview information. | |
| ContentSize | Int | True |
Field containing ContentSize information. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| FileExtension | String | True |
Field containing FileExtension information. | |
| LatestPublishedVersionId | String | True |
ID of the LatestPublishedVersion associated with this record. | |
| OwnerId | String | False |
User.Id |
ID of the user who owns the record. |
| LatestContentId | String | True |
ID of the LatestContent associated with this record. | |
| Content | String | False |
Field containing Content information. | |
| DecodedContent | String | False |
Field containing DecodedContent information. | |
| IsReadOnly | Bool | True |
Indicates whether the record has the ReadOnly characteristic. | |
| SharingPrivacy | String | False |
Field containing SharingPrivacy information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentNotification.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Nature | String | True |
Field containing Nature information. | |
| UsersId | String | True |
User.Id |
ID of the Users associated with this record. |
| EntityType | String | True |
Type classification for Entity. | |
| EntityIdentifierId | String | True |
ID of the EntityIdentifier associated with this record. | |
| Subject | String | True |
Subject or title of the activity. | |
| Text | String | True |
Field containing Text information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for ContentTagSubscription.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| UserId | String | True |
User.Id |
ID of the User associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ContentTaxonomy.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| Language | String | False |
Language of the record or user interface. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentTaxonomyTerm.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ExternalId | String | False |
External ID from another system. | |
| Description | String | False |
Text description of the record. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentUserSubscription.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| SubscriberUserId | String | True |
User.Id |
ID of the SubscriberUser associated with this record. |
| SubscribedToUserId | String | True |
User.Id |
ID of the SubscribedToUser associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Tracks different versions of Content Documents, enabling version control for uploaded files.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the content version record. | |
| ContentDocumentId | String | False |
ID of the parent content document this version belongs to. | |
| IsLatest | Bool | True |
Indicates whether this version is the latest (true) or not (false). | |
| ContentUrl | String | False |
URL used to access the content. | |
| ContentBodyId | String | False |
ID of the ContentBody associated with this record. | |
| VersionNumber | String | True |
The version number of the content document. | |
| Title | String | False |
Title of the content document version. | |
| Description | String | False |
Text description of the content document version. | |
| ReasonForChange | String | False |
Explanation for changes made in this version. | |
| SharingOption | String | False |
Field containing SharingOption information. | |
| SharingPrivacy | String | False |
Field containing SharingPrivacy information. | |
| PathOnClient | String | False |
Original file path on the client machine when the content was uploaded. | |
| RatingCount | Int | True |
Total number of ratings received for this version. | |
| IsDeleted | Bool | True |
Indicates whether the version has been deleted (true) or not (false). | |
| ContentModifiedDate | Datetime | False |
Date and time when the content was last modified. | |
| ContentModifiedById | String | True |
User.Id |
ID of the user who last modified the content. |
| PositiveRatingCount | Int | True |
Number of positive ratings for this content version. | |
| NegativeRatingCount | Int | True |
Number of negative ratings for this content version. | |
| FeaturedContentBoost | Int | True |
Boost value applied when the content is featured. | |
| FeaturedContentDate | Date | True |
Date when the content was marked as featured. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| OwnerId | String | False |
User.Id |
ID of the user who owns this content version. |
| CreatedById | String | True |
User.Id |
ID of the user who created this version. |
| CreatedDate | Datetime | True |
Date and time when this content version was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified this version. |
| TagCsv | String | False |
Comma-separated list of tags associated with this version. | |
| FileType | String | True |
Type of file (such as PDF, DOCX, or PNG). | |
| PublishStatus | String | True |
Publishing status of the content, such as 'D' for draft or 'P' for published. | |
| VersionData | String | False |
Base64-encoded file data for this version. | |
| ContentSize | Int | True |
Size of the content in bytes. | |
| FileExtension | String | True |
Field containing FileExtension information. | |
| FirstPublishLocationId | String | False |
ID of the record where this content version was first published. | |
| FirstPublishLocationIdType | String | False |
Specifies the type of the 'FirstPublishLocationId' polymorphic field to use in the statement. | |
| FirstPublishLocationIdExternalFieldName | String | False |
Specifies the external field name of the 'FirstPublishLocationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Origin | String | False |
Indicates where the content originated, such as 'C' for Chatter or 'H' for API. | |
| ContentLocation | String | False |
Field containing ContentLocation information. | |
| TextPreview | String | True |
Field containing TextPreview information. | |
| ExternalDocumentInfo1 | String | False |
Field containing ExternalDocumentInfo1 information. | |
| ExternalDocumentInfo2 | String | False |
Field containing ExternalDocumentInfo2 information. | |
| ExternalDataSourceId | String | False |
ID of the ExternalDataSource associated with this record. | |
| Checksum | String | True |
SHA-256 checksum for the uploaded file. | |
| IsMajorVersion | Bool | False |
Indicates whether the record has the MajorVersion characteristic. | |
| IsAssetEnabled | Bool | False |
Indicates whether the record has the AssetEnabled characteristic. | |
| VersionDataUrl | String | True |
Field containing VersionDataUrl information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for system-level modifications. | |
| LastModifiedDate | Datetime | True |
Date and time when this version was last modified. |
Schema file for ContentVersionComment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ContentDocumentId | String | True |
ID of the ContentDocument associated with this record. | |
| ContentVersionId | String | True |
ID of the ContentVersion associated with this record. | |
| UserComment | String | True |
Field containing UserComment information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for ContentVersionRating.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| UserId | String | True |
User.Id |
ID of the User associated with this record. |
| ContentVersionId | String | True |
ID of the ContentVersion associated with this record. | |
| Rating | Int | True |
The account's prospect rating. | |
| UserComment | String | True |
Field containing UserComment information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentWorkspace.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Name | String | False |
Name of the record. | |
| Description | String | False |
Text description of the record. | |
| TagModel | String | True |
Field containing TagModel information. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| DefaultRecordTypeId | String | True |
RecordType.Id |
ID of the DefaultRecordType associated with this record. |
| IsRestrictContentTypes | Bool | True |
Indicates whether the record has the RestrictContentTypes characteristic. | |
| IsRestrictLinkedContentTypes | Bool | True |
Indicates whether the record has the RestrictLinkedContentTypes characteristic. | |
| WorkspaceType | String | True |
Type classification for Workspace. | |
| ShouldAddCreatorMembership | Bool | False |
Field containing ShouldAddCreatorMembership information. | |
| LastWorkspaceActivityDate | Datetime | True |
Date associated with LastWorkspaceActivity. | |
| RootContentFolderId | String | True |
ID of the RootContentFolder associated with this record. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| WorkspaceImageId | String | False |
ContentAsset.Id |
ID of the WorkspaceImage associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentWorkspaceDoc.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ContentWorkspaceId | String | False |
ID of the ContentWorkspace associated with this record. | |
| ContentDocumentId | String | False |
ID of the ContentDocument associated with this record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| IsOwner | Bool | True |
Indicates whether the record has the Owner characteristic. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. |
Schema file for ContentWorkspaceMember.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ContentWorkspaceId | String | False |
ID of the ContentWorkspace associated with this record. | |
| ContentWorkspacePermissionId | String | False |
ID of the ContentWorkspacePermission associated with this record. | |
| MemberId | String | False |
ID of the Member associated with this record. | |
| MemberIdType | String | False |
Specifies the type of the 'MemberId' polymorphic field to use in the statement. | |
| MemberIdExternalFieldName | String | False |
Specifies the external field name of the 'MemberId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| MemberType | String | True |
Type classification for Member. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ContentWorkspacePermission.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Name | String | False |
Name of the record. | |
| Type | String | True |
Type of account or classification. | |
| PermissionsManageWorkspace | Bool | False |
Field containing PermissionsManageWorkspace information. | |
| PermissionsAddContent | Bool | False |
Field containing PermissionsAddContent information. | |
| PermissionsAddContentOBO | Bool | False |
Field containing PermissionsAddContentOBO information. | |
| PermissionsArchiveContent | Bool | False |
Field containing PermissionsArchiveContent information. | |
| PermissionsDeleteContent | Bool | False |
Field containing PermissionsDeleteContent information. | |
| PermissionsFeatureContent | Bool | False |
Field containing PermissionsFeatureContent information. | |
| PermissionsViewComments | Bool | False |
Field containing PermissionsViewComments information. | |
| PermissionsAddComment | Bool | False |
Field containing PermissionsAddComment information. | |
| PermissionsModifyComments | Bool | False |
Field containing PermissionsModifyComments information. | |
| PermissionsTagContent | Bool | False |
Field containing PermissionsTagContent information. | |
| PermissionsDeliverContent | Bool | False |
Field containing PermissionsDeliverContent information. | |
| PermissionsChatterSharing | Bool | False |
Field containing PermissionsChatterSharing information. | |
| PermissionsOrganizeFileAndFolder | Bool | False |
Field containing PermissionsOrganizeFileAndFolder information. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContentWorkspaceSubscription.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| UserId | String | True |
User.Id |
ID of the User associated with this record. |
| ContentWorkspaceId | String | True |
ID of the ContentWorkspace associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Manages customer contracts, including agreement terms, statuses, and renewal details.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the contract record. | |
| AccountId | String | False |
Account.Id |
ID of the account associated with the contract. |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| Pricebook2Id | String | False |
Pricebook2.Id |
ID of the Pricebook2 associated with this record. |
| OwnerExpirationNotice | String | False |
Notification message sent to the owner before the contract expiration. | |
| StartDate | Date | False |
Start date of the contract term. | |
| EndDate | Date | True |
End date of the contract term. | |
| BillingStreet | String | False |
Street address used for billing purposes. | |
| BillingCity | String | False |
City used for billing purposes. | |
| BillingState | String | False |
State or province used for billing purposes. | |
| BillingPostalCode | String | False |
Zip or postal code used for billing purposes. | |
| BillingCountry | String | False |
Country used for billing purposes. | |
| BillingLatitude | Double | False |
Latitude of the billing address. | |
| BillingLongitude | Double | False |
Longitude of the billing address. | |
| BillingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Billing address. | |
| ContractTerm | Int | False |
Duration of the contract term in months. | |
| OwnerId | String | False |
User.Id |
ID of the user who owns the contract record. |
| Status | String | False |
Current status of the contract, such as Draft, Activated, or Terminated. | |
| CompanySignedId | String | False |
User.Id |
ID of the user who signed the contract on behalf of the company. |
| CompanySignedDate | Date | False |
Date when the contract was signed by the company representative. | |
| CustomerSignedId | String | False |
Contact.Id |
ID of the contact who signed the contract on behalf of the customer. |
| CustomerSignedTitle | String | False |
Title of the contact who signed the contract on behalf of the customer. | |
| CustomerSignedDate | Date | False |
Date when the contract was signed by the customer. | |
| SpecialTerms | String | False |
Custom terms or clauses defined in the contract. | |
| ActivatedById | String | False |
User.Id |
ID of the user who activated the contract. |
| ActivatedDate | Datetime | False |
Date when the contract was activated. | |
| StatusCode | String | True |
Categorized status of the contract such as Draft, InApproval, or Activated. | |
| Description | String | False |
Additional information or comments about the contract. | |
| IsDeleted | Bool | True |
Indicates whether the contract has been deleted (true) or not (false). | |
| ContractNumber | String | True |
Auto-generated number used to uniquely identify the contract. | |
| LastApprovedDate | Datetime | True |
Date when the contract was most recently approved. | |
| CreatedDate | Datetime | True |
Date and time when the contract record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the contract record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the contract record. |
| LastActivityDate | Date | True |
Date of the most recent activity related to this contract. | |
| LastViewedDate | Datetime | True |
Date and time when the contract was last viewed by the user. | |
| LastReferencedDate | Datetime | True |
Date and time when the contract was last referenced in another record or process. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified for system tracking purposes. | |
| LastModifiedDate | Datetime | True |
Date and time when the contract record was last modified. |
Defines the relationship between a contact and a contract, specifying their role in the agreement.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the contract contact role record. | |
| ContractId | String | False |
Contract.Id |
ID of the contract associated with this contact role. |
| ContactId | String | False |
Contact.Id |
ID of the contact assigned to the contract. |
| Role | String | False |
Role of the contact in the context of the contract, such as Decision Maker or Signatory. | |
| IsPrimary | Bool | False |
Indicates whether this contact is the primary contact for the contract (true) or not (false). | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| IsDeleted | Bool | True |
Indicates whether the record has been deleted (true) or not (false). | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the last modification. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Captures Chatter activity, including posts and updates, related to Contract records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the contract feed item. | |
| ParentId | String | True |
Contract.Id |
ID of the contract record associated with this feed item. |
| Type | String | True |
Type of feed item, such as TextPost, ContentPost, or LinkPost. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted (true) or not (false). | |
| CommentCount | Int | True |
Total number of comments on the feed item. | |
| LikeCount | Int | True |
Total number of likes on the feed item. | |
| Title | String | True |
Title of the feed item, typically used for content or link posts. | |
| Body | String | True |
Main content or message of the feed item. | |
| LinkUrl | String | True |
URL associated with a link-type feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a record related to this feed item, such as a referenced document or task. | |
| InsertedById | String | True |
User.Id |
ID of the user who originally inserted the feed item, which may differ from the creator in some cases. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the last modification. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for ContractLineItem.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| LineItemNumber | String | True |
LineItem identification number. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ServiceContractId | String | False |
ID of the ServiceContract associated with this record. | |
| Product2Id | String | True |
Product2.Id |
ID of the Product associated with this record. |
| AssetId | String | False |
Asset.Id |
ID of the Asset associated with this record. |
| StartDate | Date | False |
Start date for the record or activity. | |
| EndDate | Date | False |
End date for the record or activity. | |
| Description | String | False |
Text description of the record. | |
| PricebookEntryId | String | False |
ID of the PricebookEntry associated with this record. | |
| Quantity | Double | False |
Quantity of the product. | |
| UnitPrice | Decimal | False |
Price per unit for the product. | |
| Discount | Double | False |
Percentage discount from the list price. | |
| ListPrice | Decimal | True |
List price for the product. | |
| Subtotal | Decimal | True |
Subtotal amount before tax. | |
| TotalPrice | Decimal | True |
Total price for the line item. | |
| Status | String | True |
Status of the record. | |
| ParentContractLineItemId | String | False |
ID of the ParentContractLineItem associated with this record. | |
| RootContractLineItemId | String | True |
ID of the RootContractLineItem associated with this record. | |
| LocationId | String | False |
Location.Id |
ID of the Location associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ContractLineItemFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for ConversationApiLog.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| RequestedById | String | False |
User.Id |
ID of the RequestedBy associated with this record. |
| RequestedDate | Datetime | False |
Date associated with Requested. | |
| RequestedEntityType | String | False |
Type classification for RequestedEntity. | |
| RequestedEntityIdentifier | String | False |
Field containing RequestedEntityIdentifier information. | |
| Action | String | False |
Field containing Action information. | |
| Operation | String | False |
Field containing Operation information. | |
| Status | String | False |
Status of the record. | |
| Parameter | String | False |
Field containing Parameter information. | |
| StatusHistory | String | False |
Field containing StatusHistory information. | |
| Context | String | False |
Field containing Context information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ConversationApiLogObjSum.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ConversationApiLogId | String | False |
ID of the ConversationApiLog associated with this record. | |
| EntityKeyPrefix | String | False |
Field containing EntityKeyPrefix information. | |
| StorageSystem | String | False |
Field containing StorageSystem information. | |
| RecordCountTotal | Int | False |
Field containing RecordCountTotal information. | |
| RecordCountSuccess | Int | False |
Field containing RecordCountSuccess information. | |
| RecordCountFailed | Int | False |
Field containing RecordCountFailed information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ConversationEntry.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ConversationEntityId | String | False |
Conversation.Id |
ID of the ConversationEntity associated with this record. |
| ConversationId | String | False |
ID of the Conversation associated with this record. | |
| ConversationIdType | String | False |
Specifies the type of the 'ConversationId' polymorphic field to use in the statement. | |
| ConversationIdExternalFieldName | String | False |
Specifies the external field name of the 'ConversationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Seq | Int | False |
Field containing Seq information. | |
| EntryTime | Datetime | False |
Field containing EntryTime information. | |
| EntryTimeMilliSecs | Int | False |
Field containing EntryTimeMilliSecs information. | |
| EntryType | String | False |
Type classification for Entry. | |
| ActorType | String | False |
Type classification for Actor. | |
| ActorId | String | False |
ID of the Actor associated with this record. | |
| ActorIdType | String | False |
Specifies the type of the 'ActorId' polymorphic field to use in the statement. | |
| ActorIdExternalFieldName | String | False |
Specifies the external field name of the 'ActorId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ActorName | String | False |
Field containing ActorName information. | |
| Message | String | False |
Field containing Message information. | |
| MessageStatus | String | False |
Status of the Message. | |
| MessageStatusCode | String | False |
Field containing MessageStatusCode information. | |
| MessageSendTime | Datetime | False |
Field containing MessageSendTime information. | |
| MessageDeliverTime | Datetime | False |
Field containing MessageDeliverTime information. | |
| MessageReadTime | Datetime | False |
Field containing MessageReadTime information. | |
| MessageIdentifier | String | False |
Field containing MessageIdentifier information. | |
| HasAttachments | Bool | False |
Indicates whether the record has Attachments. | |
| EntryEndTime | Datetime | False |
Field containing EntryEndTime information. | |
| ClientTimestamp | Datetime | False |
Field containing ClientTimestamp information. | |
| ClientDuration | Int | False |
Field containing ClientDuration information. | |
| ServerReceivedTimestamp | Datetime | False |
Field containing ServerReceivedTimestamp information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ConvIntelligenceSignalRule.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ConversationChannelId | String | False |
ID of the ConversationChannel associated with this record. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| Criteria | String | False |
Field containing Criteria information. | |
| ActionType | String | False |
Type classification for Action. | |
| ActionValue | String | False |
Field containing ActionValue information. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Label | String | False |
Field containing Label information. | |
| Service | String | False |
Field containing Service information. | |
| ParticipantRole | String | False |
Field containing ParticipantRole information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ConvIntelligenceSignalSubRule.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ConvIntelligenceSignalRuleId | String | False |
ID of the ConvIntelligenceSignalRule associated with this record. | |
| Type | String | False |
Type of account or classification. | |
| OperandValue | String | False |
Field containing OperandValue information. | |
| Order | Int | False |
Field containing Order information. | |
| Operator | String | False |
Field containing Operator information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CorsWhitelistEntry.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UrlPattern | String | False |
Field containing UrlPattern information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CredentialStuffingEventStoreFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for CreditMemo.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DocumentNumber | String | True |
Document identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| BillingAccountId | String | False |
Account.Id |
ID of the BillingAccount associated with this record. |
| ReferenceEntityId | String | False |
ID of the ReferenceEntity associated with this record. | |
| ReferenceEntityIdType | String | False |
Specifies the type of the 'ReferenceEntityId' polymorphic field to use in the statement. | |
| ReferenceEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'ReferenceEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| CreditMemoNumber | String | False |
CreditMemo identification number. | |
| CreditDate | Date | False |
Date associated with Credit. | |
| Description | String | False |
Text description of the record. | |
| Status | String | False |
Status of the record. | |
| BillToContactId | String | False |
Contact.Id |
ID of the BillToContact associated with this record. |
| Balance | Decimal | True |
Field containing Balance information. | |
| TaxLocaleType | String | False |
Type classification for TaxLocale. | |
| TotalChargeTaxAmount | Decimal | True |
Field containing TotalChargeTaxAmount information. | |
| TotalChargeAmountWithTax | Decimal | True |
Field containing TotalChargeAmountWithTax information. | |
| TotalAdjustmentTaxAmount | Decimal | True |
Field containing TotalAdjustmentTaxAmount information. | |
| TotalAdjustmentAmountWithTax | Decimal | True |
Field containing TotalAdjustmentAmountWithTax information. | |
| TotalCreditAmountApplied | Decimal | True |
Field containing TotalCreditAmountApplied information. | |
| TotalCreditAmountUnapplied | Decimal | True |
Field containing TotalCreditAmountUnapplied information. | |
| CreationMode | String | True |
Field containing CreationMode information. | |
| ExternalReference | String | False |
Field containing ExternalReference information. | |
| ExternalReferenceDataSource | String | False |
Field containing ExternalReferenceDataSource information. | |
| Category | String | True |
Field containing Category information. | |
| ReasonCode | String | True |
Field containing ReasonCode information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CreditMemoFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
CreditMemo.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for CreditMemoInvApplication.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreditMemoInvoiceNumber | String | True |
CreditMemoInvoice identification number. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| InvoiceId | String | True |
Invoice.Id |
ID of the Invoice associated with this record. |
| CreditMemoId | String | True |
CreditMemo.Id |
ID of the CreditMemo associated with this record. |
| Amount | Decimal | True |
Estimated total sale amount. | |
| Type | String | True |
Type of account or classification. | |
| Description | String | False |
Text description of the record. | |
| Date | Datetime | True |
Date associated with . | |
| AppliedDate | Datetime | True |
Date associated with Applied. | |
| EffectiveDate | Datetime | True |
Date associated with Effective. | |
| UnappliedDate | Datetime | True |
Date associated with Unapplied. | |
| AssociatedLineId | String | True |
ID of the AssociatedLine associated with this record. | |
| HasBeenUnapplied | String | True |
Indicates whether the record has BeenUnapplied. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CreditMemoInvApplicationFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for CreditMemoLine.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| CreditMemoId | String | True |
CreditMemo.Id |
ID of the CreditMemo associated with this record. |
| ReferenceEntityItemId | String | False |
ID of the ReferenceEntityItem associated with this record. | |
| ReferenceEntityItemIdType | String | False |
Specifies the type of the 'ReferenceEntityItemId' polymorphic field to use in the statement. | |
| ReferenceEntityItemIdExternalFieldName | String | False |
Specifies the external field name of the 'ReferenceEntityItemId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| StartDate | Date | False |
Start date for the record or activity. | |
| EndDate | Date | False |
End date for the record or activity. | |
| TaxEffectiveDate | Date | False |
Date associated with TaxEffective. | |
| Type | String | True |
Type of account or classification. | |
| TaxCode | String | False |
Field containing TaxCode information. | |
| TaxRate | Double | False |
Field containing TaxRate information. | |
| Status | String | True |
Status of the record. | |
| ChargeAmount | Decimal | False |
Field containing ChargeAmount information. | |
| TaxAmount | Decimal | False |
Field containing TaxAmount information. | |
| AdjustmentAmount | Decimal | False |
Field containing AdjustmentAmount information. | |
| Description | String | False |
Text description of the record. | |
| ReferenceEntityItemTypeCode | String | False |
Field containing ReferenceEntityItemTypeCode information. | |
| ReferenceEntityItemType | String | False |
Type classification for ReferenceEntityItem. | |
| RelatedLineId | String | False |
ID of the RelatedLine associated with this record. | |
| Product2Id | String | False |
Product2.Id |
ID of the Product associated with this record. |
| TaxName | String | False |
Field containing TaxName information. | |
| GrossUnitPrice | Decimal | False |
Field containing GrossUnitPrice information. | |
| ChargeTaxAmount | Decimal | True |
Field containing ChargeTaxAmount information. | |
| ChargeAmountWithTax | Decimal | True |
Field containing ChargeAmountWithTax information. | |
| AdjustmentTaxAmount | Decimal | True |
Field containing AdjustmentTaxAmount information. | |
| AdjustmentAmountWithTax | Decimal | True |
Field containing AdjustmentAmountWithTax information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CreditMemoLineFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for CspTrustedSite.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| EndpointUrl | String | False |
Field containing EndpointUrl information. | |
| Description | String | False |
Text description of the record. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| Context | String | False |
Field containing Context information. | |
| IsApplicableToConnectSrc | Bool | False |
Indicates whether the record has the ApplicableToConnectSrc characteristic. | |
| IsApplicableToFrameSrc | Bool | False |
Indicates whether the record has the ApplicableToFrameSrc characteristic. | |
| IsApplicableToImgSrc | Bool | False |
Indicates whether the record has the ApplicableToImgSrc characteristic. | |
| IsApplicableToStyleSrc | Bool | False |
Indicates whether the record has the ApplicableToStyleSrc characteristic. | |
| IsApplicableToFontSrc | Bool | False |
Indicates whether the record has the ApplicableToFontSrc characteristic. | |
| IsApplicableToMediaSrc | Bool | False |
Indicates whether the record has the ApplicableToMediaSrc characteristic. | |
| CanAccessCamera | Bool | False |
Indicates whether the user or record can perform AccessCamera action. | |
| CanAccessMicrophone | Bool | False |
Indicates whether the user or record can perform AccessMicrophone action. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CurrencyType.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsoCode | String | False |
Indicates whether the record has the oCode characteristic. | |
| ConversionRate | Double | False |
Field containing ConversionRate information. | |
| DecimalPlaces | Int | False |
Field containing DecimalPlaces information. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| IsCorporate | Bool | False |
Indicates whether the record has the Corporate characteristic. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CustomBrand.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CustomBrandAsset.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| CustomBrandId | String | False |
CustomBrand.Id |
ID of the CustomBrand associated with this record. |
| AssetCategory | String | False |
Field containing AssetCategory information. | |
| TextAsset | String | False |
Field containing TextAsset information. | |
| AssetSourceId | String | False |
ID of the AssetSource associated with this record. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Customer.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PartyId | String | False |
Individual.Id |
ID of the Party associated with this record. |
| TotalLifeTimeValue | Int | False |
Field containing TotalLifeTimeValue information. | |
| CustomerStatusType | String | False |
Type classification for CustomerStatus. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for CustomNotificationType.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| CustomNotifTypeName | String | False |
Field containing CustomNotifTypeName information. | |
| Description | String | False |
Text description of the record. | |
| Desktop | Bool | False |
Field containing Desktop information. | |
| Mobile | Bool | False |
Field containing Mobile information. | |
| IsSlack | Bool | False |
Indicates whether the record has the Slack characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for DandBCompany.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| DunsNumber | String | False |
The Data Universal Number System (D-U-N-S) number is a nine-digit number assigned to companies by Dun & Bradstreet. | |
| Street | String | False |
Street address. | |
| City | String | False |
City portion of the address. | |
| State | String | False |
State or province portion of the address. | |
| PostalCode | String | False |
Postal code portion of the address. | |
| Country | String | False |
Country portion of the address. | |
| GeocodeAccuracyStandard | String | False |
Field containing GeocodeAccuracyStandard information. | |
| Phone | String | False |
Phone number for the contact or account. | |
| Fax | String | False |
Fax number for the contact or account. | |
| CountryAccessCode | String | False |
Field containing CountryAccessCode information. | |
| PublicIndicator | String | False |
Field containing PublicIndicator information. | |
| StockSymbol | String | False |
Field containing StockSymbol information. | |
| StockExchange | String | False |
Field containing StockExchange information. | |
| SalesVolume | Double | False |
Field containing SalesVolume information. | |
| URL | String | False |
Field containing URL information. | |
| OutOfBusiness | String | False |
Field containing OutOfBusiness information. | |
| EmployeesTotal | Double | False |
Field containing EmployeesTotal information. | |
| FipsMsaCode | String | False |
Field containing FipsMsaCode information. | |
| FipsMsaDesc | String | False |
Field containing FipsMsaDesc information. | |
| TradeStyle1 | String | False |
Field containing TradeStyle1 information. | |
| YearStarted | String | False |
Field containing YearStarted information. | |
| MailingStreet | String | False |
Street address for Mailing purposes. | |
| MailingCity | String | False |
City for Mailing address. | |
| MailingState | String | False |
State or province for Mailing address. | |
| MailingPostalCode | String | False |
Postal code for Mailing address. | |
| MailingCountry | String | False |
Country for Mailing address. | |
| MailingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Mailing address. | |
| Latitude | String | False |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | String | False |
Used with Latitude to specify the precise geolocation of an address. | |
| PrimarySic | String | False |
Field containing PrimarySic information. | |
| PrimarySicDesc | String | False |
Field containing PrimarySicDesc information. | |
| SecondSic | String | False |
Field containing SecondSic information. | |
| SecondSicDesc | String | False |
Field containing SecondSicDesc information. | |
| ThirdSic | String | False |
Field containing ThirdSic information. | |
| ThirdSicDesc | String | False |
Field containing ThirdSicDesc information. | |
| FourthSic | String | False |
Field containing FourthSic information. | |
| FourthSicDesc | String | False |
Field containing FourthSicDesc information. | |
| FifthSic | String | False |
Field containing FifthSic information. | |
| FifthSicDesc | String | False |
Field containing FifthSicDesc information. | |
| SixthSic | String | False |
Field containing SixthSic information. | |
| SixthSicDesc | String | False |
Field containing SixthSicDesc information. | |
| PrimaryNaics | String | False |
Field containing PrimaryNaics information. | |
| PrimaryNaicsDesc | String | False |
Field containing PrimaryNaicsDesc information. | |
| SecondNaics | String | False |
Field containing SecondNaics information. | |
| SecondNaicsDesc | String | False |
Field containing SecondNaicsDesc information. | |
| ThirdNaics | String | False |
Field containing ThirdNaics information. | |
| ThirdNaicsDesc | String | False |
Field containing ThirdNaicsDesc information. | |
| FourthNaics | String | False |
Field containing FourthNaics information. | |
| FourthNaicsDesc | String | False |
Field containing FourthNaicsDesc information. | |
| FifthNaics | String | False |
Field containing FifthNaics information. | |
| FifthNaicsDesc | String | False |
Field containing FifthNaicsDesc information. | |
| SixthNaics | String | False |
Field containing SixthNaics information. | |
| SixthNaicsDesc | String | False |
Field containing SixthNaicsDesc information. | |
| OwnOrRent | String | False |
Field containing OwnOrRent information. | |
| EmployeesHere | Double | False |
Field containing EmployeesHere information. | |
| EmployeesHereReliability | String | False |
Field containing EmployeesHereReliability information. | |
| SalesVolumeReliability | String | False |
Field containing SalesVolumeReliability information. | |
| CurrencyCode | String | False |
Field containing CurrencyCode information. | |
| LegalStatus | String | False |
Status of the Legal. | |
| GlobalUltimateTotalEmployees | Double | False |
Field containing GlobalUltimateTotalEmployees information. | |
| EmployeesTotalReliability | String | False |
Field containing EmployeesTotalReliability information. | |
| MinorityOwned | String | False |
Field containing MinorityOwned information. | |
| WomenOwned | String | False |
Field containing WomenOwned information. | |
| SmallBusiness | String | False |
Field containing SmallBusiness information. | |
| MarketingSegmentationCluster | String | False |
Field containing MarketingSegmentationCluster information. | |
| ImportExportAgent | String | False |
Field containing ImportExportAgent information. | |
| Subsidiary | String | False |
Field containing Subsidiary information. | |
| TradeStyle2 | String | False |
Field containing TradeStyle2 information. | |
| TradeStyle3 | String | False |
Field containing TradeStyle3 information. | |
| TradeStyle4 | String | False |
Field containing TradeStyle4 information. | |
| TradeStyle5 | String | False |
Field containing TradeStyle5 information. | |
| NationalId | String | False |
ID of the National associated with this record. | |
| NationalIdType | String | False |
Type classification for NationalId. | |
| UsTaxId | String | False |
ID of the UsTax associated with this record. | |
| GeoCodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| FamilyMembers | Int | False |
Field containing FamilyMembers information. | |
| MarketingPreScreen | String | False |
Field containing MarketingPreScreen information. | |
| GlobalUltimateDunsNumber | String | False |
GlobalUltimateDuns identification number. | |
| GlobalUltimateBusinessName | String | False |
Field containing GlobalUltimateBusinessName information. | |
| ParentOrHqDunsNumber | String | False |
ParentOrHqDuns identification number. | |
| ParentOrHqBusinessName | String | False |
Field containing ParentOrHqBusinessName information. | |
| DomesticUltimateDunsNumber | String | False |
DomesticUltimateDuns identification number. | |
| DomesticUltimateBusinessName | String | False |
Field containing DomesticUltimateBusinessName information. | |
| LocationStatus | String | False |
Status of the Location. | |
| CompanyCurrencyIsoCode | String | False |
Field containing CompanyCurrencyIsoCode information. | |
| Description | String | False |
Text description of the record. | |
| FortuneRank | Int | False |
Field containing FortuneRank information. | |
| IncludedInSnP500 | String | False |
Field containing IncludedInSnP500 information. | |
| PremisesMeasure | Int | False |
Field containing PremisesMeasure information. | |
| PremisesMeasureReliability | String | False |
Field containing PremisesMeasureReliability information. | |
| PremisesMeasureUnit | String | False |
Field containing PremisesMeasureUnit information. | |
| EmployeeQuantityGrowthRate | Double | False |
Field containing EmployeeQuantityGrowthRate information. | |
| SalesTurnoverGrowthRate | Double | False |
Field containing SalesTurnoverGrowthRate information. | |
| PrimarySic8 | String | False |
Field containing PrimarySic8 information. | |
| PrimarySic8Desc | String | False |
Field containing PrimarySic8Desc information. | |
| SecondSic8 | String | False |
Field containing SecondSic8 information. | |
| SecondSic8Desc | String | False |
Field containing SecondSic8Desc information. | |
| ThirdSic8 | String | False |
Field containing ThirdSic8 information. | |
| ThirdSic8Desc | String | False |
Field containing ThirdSic8Desc information. | |
| FourthSic8 | String | False |
Field containing FourthSic8 information. | |
| FourthSic8Desc | String | False |
Field containing FourthSic8Desc information. | |
| FifthSic8 | String | False |
Field containing FifthSic8 information. | |
| FifthSic8Desc | String | False |
Field containing FifthSic8Desc information. | |
| SixthSic8 | String | False |
Field containing SixthSic8 information. | |
| SixthSic8Desc | String | False |
Field containing SixthSic8Desc information. | |
| PriorYearEmployees | Int | False |
Field containing PriorYearEmployees information. | |
| PriorYearRevenue | Double | False |
Field containing PriorYearRevenue information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Captures Chatter activity, including posts and updates, related to Dashboard Components.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the dashboard component feed item. | |
| ParentId | String | True |
ID of the parent dashboard component associated with this feed item. | |
| Type | String | True |
Type of feed item, such as TextPost, LinkPost, or ContentPost. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
Number of comments associated with the feed item. | |
| LikeCount | Int | True |
Number of likes associated with the feed item. | |
| Title | String | True |
Title of the feed item. | |
| Body | String | True |
Main content or body of the feed item. | |
| LinkUrl | String | True |
URL of the link included in the feed item, if applicable. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record related to the feed item, if any. | |
| InsertedById | String | True |
User.Id |
ID of the user who inserted the feed item, which may differ from the creator in some cases. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Captures Chatter activity, including posts and updates, related to Dashboards.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the dashboard feed item. | |
| ParentId | String | True |
Dashboard.Id |
ID of the dashboard record associated with this feed item. |
| Type | String | True |
Type of feed item, such as TextPost, LinkPost, or ContentPost. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
Number of comments associated with the feed item. | |
| LikeCount | Int | True |
Number of likes associated with the feed item. | |
| Title | String | True |
Title of the feed item. | |
| Body | String | True |
Main content or body of the feed item. | |
| LinkUrl | String | True |
URL of the link included in the feed item, if applicable. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the related record linked within the feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who inserted the feed item, which may differ from the creator in automated cases. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for DataAssetPromotionRequest.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Status | String | False |
Status of the record. | |
| RequesterComment | String | False |
Field containing RequesterComment information. | |
| RequestedById | String | False |
User.Id |
ID of the RequestedBy associated with this record. |
| RequestedDate | Datetime | False |
Date associated with Requested. | |
| WorkspaceAssetId | String | False |
ID of the WorkspaceAsset associated with this record. | |
| Asset | String | False |
Field containing Asset information. | |
| AcknowledgedDate | Datetime | False |
Date associated with Acknowledged. | |
| AcknowledgedById | String | False |
User.Id |
ID of the AcknowledgedBy associated with this record. |
| MigrationSucceededDate | Datetime | False |
Date associated with MigrationSucceeded. | |
| FailedDate | Datetime | False |
Date associated with Failed. | |
| CancelledById | String | False |
User.Id |
ID of the CancelledBy associated with this record. |
| CancelledDate | Datetime | False |
Indicates whether the user or record can perform celledDate action. | |
| CompletedById | String | False |
User.Id |
ID of the CompletedBy associated with this record. |
| CompletedDate | Datetime | False |
Date when the record was completed. | |
| RejectionComment | String | False |
Field containing RejectionComment information. | |
| PersonalOrg | String | False |
Person account field for alOrg. | |
| ProductionOrg | String | False |
Field containing ProductionOrg information. | |
| SourceRequest | String | False |
Field containing SourceRequest information. | |
| TargetRequest | String | False |
Field containing TargetRequest information. | |
| PersonalOrgWorkspace | String | False |
Person account field for alOrgWorkspace. | |
| ProductionOrgWorkspace | String | False |
Field containing ProductionOrgWorkspace information. | |
| NumberOfDependencies | Int | False |
Field containing NumberOfDependencies information. | |
| InstalledDate | Datetime | False |
Date associated with Installed. | |
| AssetLabel | String | False |
Field containing AssetLabel information. | |
| TaskType | String | False |
Type classification for Task. | |
| TargetAsset | String | False |
Field containing TargetAsset information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for DataEncryptionKey.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| DataEncryptionKeyCertName | String | False |
Field containing DataEncryptionKeyCertName information. | |
| Version | Int | False |
Field containing Version information. | |
| RootKeyIdentifier | String | False |
Field containing RootKeyIdentifier information. | |
| RootKeyKmsIdentifier | String | False |
Field containing RootKeyKmsIdentifier information. | |
| CreatedDate | Datetime | False |
Date and time when the record was created. | |
| CreatedBy | String | False |
Field containing CreatedBy information. | |
| LastModifiedBy | String | False |
Field containing LastModifiedBy information. | |
| DoesUseKeyDerivation | Bool | False |
Field containing DoesUseKeyDerivation information. | |
| Source | String | False |
Field containing Source information. | |
| Type | String | False |
Type of account or classification. | |
| Status | String | False |
Status of the record. | |
| Description | String | False |
Text description of the record. | |
| SessionToken | String | False |
Field containing SessionToken information. | |
| SecretValue | String | False |
Field containing SecretValue information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LastModifiedDate | Datetime | False |
Date and time when the record was last modified. |
Schema file for DataMaskCustomValueLibrary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Values | String | False |
Field containing Values information. | |
| ContentType | String | False |
Type classification for Content. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| Description | String | False |
Text description of the record. | |
| Type | String | True |
Type of account or classification. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for DataUseLegalBasis.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Source | String | False |
Field containing Source information. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for DataUsePurpose.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| LegalBasisId | String | False |
ID of the LegalBasis associated with this record. | |
| Description | String | False |
Text description of the record. | |
| CanDataSubjectOptOut | Bool | False |
Indicates whether the user or record can perform DataSubjectOptOut action. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for DigitalWallet.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DigitalWalletNumber | String | True |
DigitalWallet identification number. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PaymentGatewayId | String | False |
ID of the PaymentGateway associated with this record. | |
| NickName | String | False |
Field containing NickName information. | |
| GatewayToken | String | False |
Token representing the payment method in the payment gateway. | |
| GatewayTokenDetails | String | False |
Additional details about the gateway token. | |
| Customer | String | False |
Field containing Customer information. | |
| String | False |
Email address for the contact or person account. | ||
| Type | String | False |
Type of account or classification. | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| Status | String | False |
Status of the record. | |
| CompanyName | String | False |
Field containing CompanyName information. | |
| PaymentMethodStreet | String | False |
Street address for PaymentMethod purposes. | |
| PaymentMethodCity | String | False |
City for PaymentMethod address. | |
| PaymentMethodState | String | False |
State or province for PaymentMethod address. | |
| PaymentMethodPostalCode | String | False |
Postal code for PaymentMethod address. | |
| PaymentMethodCountry | String | False |
Country for PaymentMethod address. | |
| PaymentMethodLatitude | Double | False |
Latitude coordinate for PaymentMethod address geolocation. | |
| PaymentMethodLongitude | Double | False |
Longitude coordinate for PaymentMethod address geolocation. | |
| PaymentMethodGeocodeAccuracy | String | False |
Accuracy level of the geocode for the PaymentMethod address. | |
| Comments | String | False |
Field containing Comments information. | |
| ProcessingMode | String | False |
Mode used for processing the payment. | |
| MacAddress | String | False |
Field containing MacAddress information. | |
| Phone | String | False |
Phone number for the contact or account. | |
| IpAddress | String | False |
Field containing IpAddress information. | |
| AuditEmail | String | False |
Field containing AuditEmail information. | |
| GatewayTokenEncrypted | String | False |
Field containing GatewayTokenEncrypted information. | |
| IsAutoPayEnabled | Bool | False |
Indicates whether the record has the AutoPayEnabled characteristic. | |
| PaymentMethodType | String | False |
Type classification for PaymentMethod. | |
| PaymentMethodSubType | String | False |
Type classification for PaymentMethodSub. | |
| PaymentMethodDetails | String | False |
Field containing PaymentMethodDetails information. | |
| BillingName | String | False |
Field containing BillingName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores documents and files uploaded to Salesforces legacy Document Library.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the document. | |
| FolderId | String | False |
ID of the folder where the document is stored. | |
| IsDeleted | Bool | True |
Indicates whether the document has been deleted. | |
| Name | String | False |
Name of the document as displayed in Salesforce. | |
| DeveloperName | String | False |
Unique name used to reference the document programmatically. | |
| NamespacePrefix | String | True |
Namespace prefix associated with the document, if applicable. | |
| ContentType | String | False |
Multipurpose Internet Mail Extensions (MIME) type of the document, such as 'application/pdf' or 'image/png'. | |
| Type | String | False |
File extension of the document, such as 'pdf' or 'docx'. | |
| IsPublic | Bool | False |
Indicates whether the document is publicly accessible outside the organization. | |
| BodyLength | Int | True |
Size of the document body in bytes. | |
| Body | String | False |
Base64-encoded content of the document. | |
| Url | String | False |
URL to access the document, if applicable. | |
| Description | String | False |
Description of the document's content or purpose. | |
| Keywords | String | False |
Comma-separated list of keywords associated with the document. | |
| IsInternalUseOnly | Bool | False |
Indicates whether the document is restricted to internal use only. | |
| AuthorId | String | False |
User.Id |
ID of the user who authored or uploaded the document. |
| CreatedDate | Datetime | True |
Date and time when the document was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the document. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the document. |
| IsBodySearchable | Bool | True |
Indicates whether the document's content is searchable. | |
| LastViewedDate | Datetime | True |
Date and time when the document was last viewed. | |
| LastReferencedDate | Datetime | True |
Date and time when the document was last referenced in Salesforce. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| FullPath | String | False |
Pseudo column which is used to fill a document#TEMP temporary table, which is then used to upload multiple documents using the Uploaddocument stored procedure. See documentation for an example. | |
| FolderPath | String | False |
Pseudo column which is used to fill a document#TEMP temporary table, which is then used to upload multiple documents using the Uploaddocument stored procedure. See documentation for an example. | |
| Base64Data | String | False |
Pseudo column which is used to fill a document#TEMP temporary table, which is then used to upload multiple documents using the Uploaddocument stored procedure. See documentation for an example. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update for the document. | |
| LastModifiedDate | Datetime | True |
Date and time when the document was last modified. |
Maps attachments to documents, allowing files to be linked to different records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the document attachment mapping record. | |
| ParentId | String | False |
ID of the parent entity the document is attached to. | |
| DocumentId | String | False |
Document.Id |
ID of the document that is attached to the parent entity. |
| DocumentSequence | Int | False |
Sequence number indicating the order of document attachments. | |
| CreatedDate | Datetime | True |
Date and time when the document attachment mapping was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the document attachment mapping. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for DuplicateRecordItem.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| DuplicateRecordSetId | String | False |
ID of the DuplicateRecordSet associated with this record. | |
| RecordId | String | False |
ID of the Record associated with this record. | |
| RecordIdType | String | False |
Specifies the type of the 'RecordId' polymorphic field to use in the statement. | |
| RecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for DuplicateRecordSet.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| DuplicateRuleId | String | False |
ID of the DuplicateRule associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EmailCapture.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| IsActive | Bool | True |
Indicates whether the record is active. | |
| ToPattern | String | False |
Field containing ToPattern information. | |
| FromPattern | String | False |
Field containing FromPattern information. | |
| Sender | String | True |
Field containing Sender information. | |
| Recipient | String | True |
Field containing Recipient information. | |
| CaptureDate | Datetime | True |
Date associated with Capture. | |
| RawMessageLength | Int | True |
Field containing RawMessageLength information. | |
| RawMessage | String | True |
Field containing RawMessage information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EmailDomainFilter.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| PriorityNumber | Int | False |
Priority identification number. | |
| EmailRelayId | String | False |
EmailRelay.Id |
ID of the EmailRelay associated with this record. |
| ToDomain | String | False |
Field containing ToDomain information. | |
| FromDomain | String | False |
Field containing FromDomain information. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EmailDomainKey.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Selector | String | False |
Field containing Selector information. | |
| Domain | String | False |
Field containing Domain information. | |
| DomainMatch | String | False |
Field containing DomainMatch information. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| AlternateSelector | String | False |
Field containing AlternateSelector information. | |
| TxtRecordName | String | True |
Field containing TxtRecordName information. | |
| AlternateTxtRecordName | String | True |
Field containing AlternateTxtRecordName information. | |
| TxtRecordsPublishState | String | True |
State or province for TxtRecordsPublish address. | |
| KeySize | Int | False |
Field containing KeySize information. | |
| PublicKey | String | False |
Field containing PublicKey information. | |
| AlternatePublicKey | String | True |
Field containing AlternatePublicKey information. | |
| DomainMatchPattern | String | False |
Field containing DomainMatchPattern information. | |
| PlatformType | String | False |
Type classification for Platform. | |
| ThirdSelector | String | False |
Field containing ThirdSelector information. | |
| ThirdTxtRecordName | String | True |
Field containing ThirdTxtRecordName information. | |
| Status | String | True |
Status of the record. | |
| StatusMessage | String | True |
Field containing StatusMessage information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EmailMessage.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | False |
Case.Id |
ID of the parent object in the hierarchy. |
| ActivityId | String | False |
Task.Id |
ID of the Activity associated with this record. |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| TextBody | String | False |
Field containing TextBody information. | |
| HtmlBody | String | False |
Field containing HtmlBody information. | |
| Headers | String | False |
Field containing Headers information. | |
| Subject | String | False |
Subject or title of the activity. | |
| Name | String | True |
Name of the record. | |
| FromName | String | False |
Field containing FromName information. | |
| FromAddress | String | False |
Field containing FromAddress information. | |
| ValidatedFromAddress | String | False |
Field containing ValidatedFromAddress information. | |
| ToAddress | String | False |
Field containing ToAddress information. | |
| CcAddress | String | False |
Field containing CcAddress information. | |
| BccAddress | String | False |
Field containing BccAddress information. | |
| Incoming | Bool | False |
Field containing Incoming information. | |
| HasAttachment | Bool | True |
Indicates whether the record has Attachment. | |
| Status | String | False |
Status of the record. | |
| MessageDate | Datetime | False |
Date associated with Message. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| ReplyToEmailMessageId | String | False |
EmailMessage.Id |
ID of the ReplyToEmailMessage associated with this record. |
| IsExternallyVisible | Bool | True |
Indicates whether the record has the ExternallyVisible characteristic. | |
| MessageIdentifier | String | False |
Field containing MessageIdentifier information. | |
| ThreadIdentifier | String | False |
Field containing ThreadIdentifier information. | |
| ClientThreadIdentifier | String | False |
Field containing ClientThreadIdentifier information. | |
| FromId | String | False |
ID of the From associated with this record. | |
| IsClientManaged | Bool | False |
Indicates whether the record has the ClientManaged characteristic. | |
| AttachmentIds | String | False |
Field containing AttachmentIds information. | |
| RelatedToId | String | False |
ID of the RelatedTo associated with this record. | |
| RelatedToIdType | String | False |
Specifies the type of the 'RelatedToId' polymorphic field to use in the statement. | |
| RelatedToIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedToId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsTracked | Bool | False |
Indicates whether the record has the Tracked characteristic. | |
| IsOpened | Bool | True |
Indicates whether the record has the Opened characteristic. | |
| FirstOpenedDate | Datetime | False |
Date associated with FirstOpened. | |
| LastOpenedDate | Datetime | False |
Date associated with LastOpened. | |
| IsBounced | Bool | False |
Indicates whether the record has the Bounced characteristic. | |
| EmailTemplateId | String | False |
ID of the EmailTemplate associated with this record. | |
| AutomationType | String | False |
Type classification for Automation. | |
| Source | String | False |
Field containing Source information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EmailMessageRelation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| EmailMessageId | String | False |
EmailMessage.Id |
ID of the EmailMessage associated with this record. |
| RelationId | String | False |
ID of the Relation associated with this record. | |
| RelationIdType | String | False |
Specifies the type of the 'RelationId' polymorphic field to use in the statement. | |
| RelationIdExternalFieldName | String | False |
Specifies the external field name of the 'RelationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| RelationType | String | False |
Type classification for Relation. | |
| RelationAddress | String | False |
Field containing RelationAddress information. | |
| RelationObjectType | String | True |
Type classification for RelationObject. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. |
Schema file for EmailRelay.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Host | String | False |
Field containing Host information. | |
| Port | String | False |
Field containing Port information. | |
| TlsSetting | String | False |
Field containing TlsSetting information. | |
| IsRequireAuth | Bool | False |
Indicates whether the record has the RequireAuth characteristic. | |
| Username | String | False |
Username of the user associated with this record. | |
| Password | String | False |
Field containing Password information. | |
| AuthType | String | False |
Type classification for Auth. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores email addresses configured for Salesforce Email Services, enabling automated email processing.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the email service address. | |
| IsActive | Bool | False |
Indicates whether the email service address is currently active. | |
| LocalPart | String | False |
Local part of the email address used to receive incoming emails. | |
| EmailDomainName | String | True |
Domain name portion of the email address. | |
| AuthorizedSenders | String | False |
Comma-separated list of email addresses or domains authorized to send messages to this service. | |
| RunAsUserId | String | False |
User.Id |
ID of the user under whose context the service executes. |
| FunctionId | String | False |
ID of the email service function associated with this address. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the email service address. |
| CreatedDate | Datetime | True |
Date and time when the email service address was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the email service address. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last modification time for the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the email service address was last modified. |
Defines functions for handling inbound emails via Salesforce Email Services.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the email service function. | |
| IsActive | Bool | False |
Indicates whether the email service function is currently active. | |
| FunctionName | String | False |
Name of the email service function. | |
| AuthorizedSenders | String | False |
Comma-separated list of email addresses or domains authorized to send messages to this service. | |
| IsAuthenticationRequired | Bool | False |
Indicates whether sender authentication is required for incoming emails. | |
| IsTlsRequired | Bool | False |
Indicates whether Transport Layer Security (TLS) is required for incoming email connections. | |
| AttachmentOption | String | False |
Specifies how attachments are handled for incoming emails. | |
| ApexClassId | String | False |
ApexClass.Id |
ID of the Apex class that processes the email messages. |
| OverLimitAction | String | False |
Action taken when the email rate limit is exceeded. | |
| FunctionInactiveAction | String | False |
Action taken when the email service function is inactive. | |
| AddressInactiveAction | String | False |
Action taken when the associated email address is inactive. | |
| AuthenticationFailureAction | String | False |
Action taken when an incoming email fails authentication. | |
| AuthorizationFailureAction | String | False |
Action taken when an incoming email is from an unauthorized sender. | |
| IsErrorRoutingEnabled | Bool | False |
Indicates whether error routing is enabled for failed email processing. | |
| ErrorRoutingAddress | String | False |
Email address to which error messages are routed if error routing is enabled. | |
| IsTextAttachmentsAsBinary | Bool | False |
Indicates whether text attachments are converted to binary format. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the email service function. |
| CreatedDate | Datetime | True |
Date and time when the email service function was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the email service function. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last modification time for the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the email service function was last modified. |
Manages email templates used for standardizing outbound email communication.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the email template. | |
| Name | String | False |
The display name of the email template. | |
| DeveloperName | String | False |
Unique developer-assigned name of the email template. | |
| NamespacePrefix | String | True |
Namespace prefix associated with the template, used in managed packages. | |
| OwnerId | String | False |
User.Id |
ID of the user or queue that owns the email template. |
| FolderId | String | False |
ID of the folder where the email template is stored. | |
| FolderName | String | True |
Field containing FolderName information. | |
| BrandTemplateId | String | False |
ID of the associated letterhead (brand template) used in the email template. | |
| EnhancedLetterheadId | String | False |
ID of the EnhancedLetterhead associated with this record. | |
| TemplateStyle | String | False |
Specifies the style format used in the template, such as custom or standard. | |
| IsActive | Bool | False |
Indicates whether the email template is available for use. | |
| TemplateType | String | False |
Type of the email template, such as text, HTML, custom, or Visualforce. | |
| Encoding | String | False |
Character encoding used for the email template. | |
| Description | String | False |
Text description providing details about the email template. | |
| Subject | String | False |
The default subject line used when sending the email. | |
| HtmlValue | String | False |
HTML-formatted content of the email template. | |
| Body | String | False |
Plain text content of the email template. | |
| TimesUsed | Int | True |
The number of times this template has been used to send emails. | |
| LastUsedDate | Datetime | True |
The date and time when the email template was last used. | |
| CreatedDate | Datetime | True |
The date and time when the email template was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the email template. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the email template. |
| ApiVersion | Double | False |
API version associated with the template if it uses Visualforce markup. | |
| Markup | String | False |
Visualforce markup or additional template markup content. | |
| UiType | String | False |
Type classification for Ui. | |
| RelatedEntityType | String | False |
Type classification for RelatedEntity. | |
| IsBuilderContent | Bool | True |
Indicates whether the record has the BuilderContent characteristic. | |
| HasSalesforceFiles | Bool | True |
Indicates whether the record has SalesforceFiles. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last time the record was modified. | |
| LastModifiedDate | Datetime | True |
The date and time when the email template was last modified. |
Schema file for EngagementChannelType.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ContactPointType | String | False |
Type classification for ContactPoint. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EngagementChannelTypeFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for EngmtChannelTypeSettings.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SettingKey | String | False |
Field containing SettingKey information. | |
| EngagementChannelType | String | False |
Type classification for EngagementChannel. | |
| IsSettingEnabled | String | False |
Indicates whether the record has the SettingEnabled characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EnhancedLetterhead.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Description | String | False |
Text description of the record. | |
| LetterheadHeader | String | False |
Field containing LetterheadHeader information. | |
| LetterheadFooter | String | False |
Field containing LetterheadFooter information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EnhancedLetterheadFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for Entitlement.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| Type | String | False |
Type of account or classification. | |
| ServiceContractId | String | False |
ID of the ServiceContract associated with this record. | |
| ContractLineItemId | String | False |
ID of the ContractLineItem associated with this record. | |
| AssetId | String | False |
Asset.Id |
ID of the Asset associated with this record. |
| StartDate | Date | False |
Start date for the record or activity. | |
| EndDate | Date | False |
End date for the record or activity. | |
| SlaProcessId | String | False |
SlaProcess.Id |
ID of the SlaProcess associated with this record. |
| BusinessHoursId | String | False |
ID of the business hours associated with this record. | |
| IsPerIncident | Bool | False |
Indicates whether the record has the PerIncident characteristic. | |
| CasesPerEntitlement | Int | False |
Field containing CasesPerEntitlement information. | |
| RemainingCases | Int | False |
Field containing RemainingCases information. | |
| Status | String | True |
Status of the record. | |
| LocationId | String | False |
Location.Id |
ID of the Location associated with this record. |
| WorkOrdersPerEntitlement | Int | False |
Field containing WorkOrdersPerEntitlement information. | |
| RemainingWorkOrders | Int | False |
Field containing RemainingWorkOrders information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EntitlementContact.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| EntitlementId | String | False |
Entitlement.Id |
ID of the Entitlement associated with this record. |
| ContactId | String | False |
Contact.Id |
ID of the Contact associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for EntitlementFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
Entitlement.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for EntitlementTemplate.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Name | String | False |
Name of the record. | |
| BusinessHoursId | String | False |
ID of the business hours associated with this record. | |
| Type | String | False |
Type of account or classification. | |
| SlaProcessId | String | False |
SlaProcess.Id |
ID of the SlaProcess associated with this record. |
| IsPerIncident | Bool | False |
Indicates whether the record has the PerIncident characteristic. | |
| CasesPerEntitlement | Int | False |
Field containing CasesPerEntitlement information. | |
| Term | Int | False |
Field containing Term information. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EntityMilestone.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ParentEntityId | String | True |
WorkOrder.Id |
ID of the ParentEntity associated with this record. |
| ParentEntityIdType | String | False |
Specifies the type of the 'ParentEntityId' polymorphic field to use in the statement. | |
| ParentEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| StartDate | Datetime | False |
Start date for the record or activity. | |
| TargetDate | Datetime | True |
Date associated with Target. | |
| CompletionDate | Datetime | False |
Date associated with Completion. | |
| SlaProcessId | String | True |
SlaProcess.Id |
ID of the SlaProcess associated with this record. |
| MilestoneTypeId | String | True |
ID of the MilestoneType associated with this record. | |
| IsCompleted | Bool | True |
Indicates whether the task has been completed. | |
| IsViolated | Bool | True |
Indicates whether the record has the Violated characteristic. | |
| TargetResponseInMins | Int | True |
Field containing TargetResponseInMins information. | |
| TargetResponseInHrs | Double | True |
Field containing TargetResponseInHrs information. | |
| TargetResponseInDays | Double | True |
Field containing TargetResponseInDays information. | |
| TimeRemainingInMins | String | True |
Field containing TimeRemainingInMins information. | |
| TimeRemainingInHrs | String | True |
Field containing TimeRemainingInHrs information. | |
| TimeRemainingInDays | Double | True |
Field containing TimeRemainingInDays information. | |
| ElapsedTimeInMins | Int | True |
Field containing ElapsedTimeInMins information. | |
| ElapsedTimeInHrs | Double | True |
Field containing ElapsedTimeInHrs information. | |
| ElapsedTimeInDays | Double | True |
Field containing ElapsedTimeInDays information. | |
| TimeSinceTargetInMins | String | True |
Field containing TimeSinceTargetInMins information. | |
| TimeSinceTargetInHrs | String | True |
Field containing TimeSinceTargetInHrs information. | |
| TimeSinceTargetInDays | Double | True |
Field containing TimeSinceTargetInDays information. | |
| BusinessHoursId | String | True |
ID of the business hours associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for EntityMilestoneFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Tracks Chatter subscriptions, allowing users to follow records and receive updates.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the entity subscription. | |
| ParentId | String | False |
ID of the record (entity) that is being followed. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SubscriberId | String | False |
User.Id |
ID of the user who is following the record. |
| CreatedById | String | True |
User.Id |
ID of the user who created the entity subscription. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the entity subscription has been deleted. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | True |
Date and time when the entity subscription was created. |
Stores scheduled meetings, appointments, and calendar events associated with users or records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the event. | |
| WhoId | String | False |
ID of the contact or lead associated with the event. | |
| WhoIdType | String | False |
Specifies the type of the 'WhoId' polymorphic field to use in the statement. | |
| WhoIdExternalFieldName | String | False |
Specifies the external field name of the 'WhoId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| WhatId | String | False |
ID of the related opportunity, account, or other object associated with the event. | |
| WhatIdType | String | False |
Specifies the type of the 'WhatId' polymorphic field to use in the statement. | |
| WhatIdExternalFieldName | String | False |
Specifies the external field name of the 'WhatId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Subject | String | False |
Subject or title of the event. | |
| Location | String | False |
Location where the event will take place. | |
| IsAllDayEvent | Bool | False |
Indicates whether the event spans the entire day. | |
| ActivityDateTime | Datetime | False |
Start date and time of the event (used if the event is not all-day). | |
| ActivityDate | Date | False |
Date of the event (used for all-day events). | |
| DurationInMinutes | Int | False |
Duration of the event in minutes. | |
| StartDateTime | Datetime | False |
Start date and time of the event. | |
| EndDateTime | Datetime | False |
End date and time of the event. | |
| EndDate | Date | True |
End date for the record or activity. | |
| Description | String | False |
Detailed description or notes related to the event. | |
| AccountId | String | True |
Account.Id |
ID of the related account associated with the event. |
| OwnerId | String | False |
ID of the user who owns or is assigned to the event. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| IsPrivate | Bool | False |
Indicates whether the event is marked as private. | |
| ShowAs | String | False |
Specifies how the event should be displayed on the calendar, such as Busy or Free. | |
| IsDeleted | Bool | True |
Indicates whether the event has been deleted. | |
| IsChild | Bool | True |
Indicates whether the event is a child in a recurring series. | |
| IsGroupEvent | Bool | True |
Indicates whether the event involves a group of users. | |
| GroupEventType | String | True |
Type of group event, such as internal meeting or shared calendar entry. | |
| CreatedDate | Datetime | True |
Date and time when the event was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the event. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the event. |
| IsArchived | Bool | True |
Indicates whether the event is archived. | |
| RecurrenceActivityId | String | True |
Event.Id |
ID of the recurring series the event belongs to, if applicable. |
| IsRecurrence | Bool | False |
Indicates whether the event is part of a recurring series. | |
| RecurrenceStartDateTime | Datetime | False |
Start date and time of the recurring event series. | |
| RecurrenceEndDateOnly | Date | False |
End date of the recurring event series. | |
| RecurrenceTimeZoneSidKey | String | False |
Time zone in which the recurrence occurs. | |
| RecurrenceType | String | False |
Pattern type of the recurring event, such as daily or weekly. | |
| RecurrenceInterval | Int | False |
Interval between recurrences based on the recurrence type. | |
| RecurrenceDayOfWeekMask | Int | False |
Bitmask representing the days of the week the event repeats on. | |
| RecurrenceDayOfMonth | Int | False |
Day of the month the event repeats on, if applicable. | |
| RecurrenceInstance | String | False |
Instance within the month the event repeats on, such as First or Last. | |
| RecurrenceMonthOfYear | String | False |
Month in which the recurring event occurs, if applicable. | |
| ReminderDateTime | Datetime | False |
Date and time when a reminder is scheduled to trigger. | |
| IsReminderSet | Bool | False |
Indicates whether a reminder is set for the event. | |
| EventSubtype | String | False |
Type classification for EventSub. | |
| IsRecurrence2Exclusion | Bool | True |
Indicates whether the record has the Recurrence2Exclusion characteristic. | |
| Recurrence2PatternText | String | False |
Field containing Recurrence2PatternText information. | |
| Recurrence2PatternVersion | String | True |
Field containing Recurrence2PatternVersion information. | |
| IsRecurrence2 | Bool | True |
Indicates whether the record has the Recurrence2 characteristic. | |
| IsRecurrence2Exception | Bool | True |
Indicates whether the record has the Recurrence2Exception characteristic. | |
| Recurrence2PatternStartDate | Datetime | True |
Date associated with Recurrence2PatternStart. | |
| Recurrence2PatternTimeZone | String | True |
Field containing Recurrence2PatternTimeZone information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last modification date. | |
| LastModifiedDate | Datetime | True |
Date and time when the event was last modified. |
Captures Chatter activity, including posts and updates, related to Event records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the event feed item. | |
| ParentId | String | True |
Event.Id |
ID of the event record this feed item is related to. |
| Type | String | True |
Type of feed item, such as text post, content share, or link. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
Number of comments associated with the feed item. | |
| LikeCount | Int | True |
Number of likes the feed item has received. | |
| Title | String | True |
Title or subject line of the feed item, if applicable. | |
| Body | String | True |
Main text body or message content of the feed item. | |
| LinkUrl | String | True |
URL included in the feed item, if any. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a related record that the feed item references. | |
| InsertedById | String | True |
User.Id |
ID of the user or process that inserted the feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last modification date. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Manages relationships between events and related records, such as attendees and leads.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the event relation record. | |
| RelationId | String | False |
ID of the contact, lead, or user associated with the event. | |
| RelationIdType | String | False |
Specifies the type of the 'RelationId' polymorphic field to use in the statement. | |
| RelationIdExternalFieldName | String | False |
Specifies the external field name of the 'RelationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| EventId | String | False |
Event.Id |
ID of the related event record. |
| Status | String | False |
Participation status of the related user or contact, such as Accepted or Declined. | |
| RespondedDate | Datetime | False |
Date and time when the participant responded to the event invitation. | |
| Response | String | False |
Type of response from the participant, such as Accepted, Declined, or Tentative. | |
| CreatedDate | Datetime | True |
Date and time when the event relation was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the event relation. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the event relation. |
| IsDeleted | Bool | True |
Indicates whether the event relation record has been deleted. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last modification date. | |
| LastModifiedDate | Datetime | True |
Date and time when the event relation was last modified. |
Schema file for EvfPipelineSubTaskDetails.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SubTaskName | String | False |
Field containing SubTaskName information. | |
| SubTaskStatus | String | False |
Status of the SubTask. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ExpressionFilter.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| FilterConditionLogic | String | False |
Field containing FilterConditionLogic information. | |
| ContextId | String | False |
ID of the Context associated with this record. | |
| FilterDescription | String | False |
Field containing FilterDescription information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ExpressionFilterCriteria.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| FilterTarget | String | False |
Field containing FilterTarget information. | |
| FilterTargetValue | String | False |
Field containing FilterTargetValue information. | |
| Operation | String | False |
Field containing Operation information. | |
| SortOrder | Int | False |
Field containing SortOrder information. | |
| ExpressionFilterId | String | False |
ID of the ExpressionFilter associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ExternalDataUserAuth.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ExternalDataSourceId | String | False |
ID of the ExternalDataSource associated with this record. | |
| ExternalDataSourceIdType | String | False |
Specifies the type of the 'ExternalDataSourceId' polymorphic field to use in the statement. | |
| ExternalDataSourceIdExternalFieldName | String | False |
Specifies the external field name of the 'ExternalDataSourceId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| Protocol | String | False |
Field containing Protocol information. | |
| Username | String | False |
Username of the user associated with this record. | |
| Password | String | False |
Field containing Password information. | |
| AuthProviderId | String | False |
AuthProvider.Id |
ID of the AuthProvider associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ExternalEncryptionRootKey.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| RootKeyIdentifier | String | False |
Field containing RootKeyIdentifier information. | |
| CreatedDate | Datetime | False |
Date and time when the record was created. | |
| CreatedBy | String | False |
Field containing CreatedBy information. | |
| LastModifiedBy | String | False |
Field containing LastModifiedBy information. | |
| RootKeyService | String | False |
Field containing RootKeyService information. | |
| Region | String | False |
Field containing Region information. | |
| Status | String | False |
Status of the record. | |
| Description | String | False |
Text description of the record. | |
| ActivatedDate | Datetime | False |
Date associated with Activated. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LastModifiedDate | Datetime | False |
Date and time when the record was last modified. |
Schema file for ExternalEvent.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ExternalId | String | False |
External ID from another system. | |
| Title | String | False |
Title of the contact or person, for example CEO or Vice President. | |
| Location | String | False |
Field containing Location information. | |
| Notes | String | False |
Field containing Notes information. | |
| Time | String | False |
Field containing Time information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ExternalEventMapping.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ExternalId | String | False |
External ID from another system. | |
| EventId | String | False |
Event.Id |
ID of the Event associated with this record. |
| StartDate | Date | False |
Start date for the record or activity. | |
| EndDate | Date | False |
End date for the record or activity. | |
| IsRecurring | Bool | False |
Indicates whether the record has the Recurring characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FeedAttachment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| FeedEntityId | String | False |
ID of the FeedEntity associated with this record. | |
| Type | String | False |
Type of account or classification. | |
| RecordId | String | False |
ID of the Record associated with this record. | |
| Title | String | False |
Title of the contact or person, for example CEO or Vice President. | |
| Value | String | False |
Field containing Value information. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Stores comments added to Chatter posts across Salesforce records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the feed comment. | |
| FeedItemId | String | False |
ID of the feed item the comment is associated with. | |
| ParentId | String | True |
ID of the parent record related to the feed comment. | |
| CreatedById | String | False |
User.Id |
ID of the user who created the feed comment. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| CreatedDate | Datetime | False |
Date and time when the feed comment was created. | |
| Revision | Int | False |
Field containing Revision information. | |
| LastEditById | String | False |
User.Id |
ID of the LastEditBy associated with this record. |
| LastEditDate | Datetime | False |
Date associated with LastEdit. | |
| CommentBody | String | False |
Text content of the comment. | |
| IsDeleted | Bool | True |
Indicates whether the feed comment has been deleted. | |
| InsertedById | String | True |
User.Id |
ID of the user who inserted the comment, typically used for automated or system-generated entries. |
| CommentType | String | False |
Type of comment, such as text or tracked change. | |
| RelatedRecordId | String | False |
ID of a related record mentioned or referenced in the comment. | |
| IsRichText | Bool | False |
Indicates whether the content contains rich text formatting. | |
| IsVerified | Bool | True |
Indicates whether the record has the Verified characteristic. | |
| HasEntityLinks | Bool | True |
Indicates whether the record has EntityLinks. | |
| Status | String | False |
Status of the record. | |
| ThreadParentId | String | False |
FeedComment.Id |
ID of the ThreadParent associated with this record. |
| ThreadLevel | Int | False |
Field containing ThreadLevel information. | |
| ThreadChildrenCount | Int | False |
Number of ThreadChildren associated with this record. | |
| ThreadLastUpdatedDate | Datetime | False |
Date associated with ThreadLastUpdated. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. |
Represents Chatter posts, including status updates, file shares, and record interactions.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the feed item. | |
| ParentId | String | False |
ID of the parent record the feed item is associated with. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Type | String | False |
Type of the feed item, such as TextPost, ContentPost, or LinkPost. | |
| CreatedById | String | False |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| CreatedDate | Datetime | False |
Date and time when the feed item was created. | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| Revision | Int | False |
Field containing Revision information. | |
| LastEditById | String | False |
User.Id |
ID of the LastEditBy associated with this record. |
| LastEditDate | Datetime | False |
Date associated with LastEdit. | |
| CommentCount | Int | True |
Number of comments associated with the feed item. | |
| LikeCount | Int | True |
Number of likes associated with the feed item. | |
| Title | String | False |
Title of the feed item, typically used for content or link posts. | |
| Body | String | False |
Text content or message body of the feed item. | |
| LinkUrl | String | False |
URL included in the feed item if it contains a link. | |
| IsRichText | Bool | False |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | False |
ID of a record referenced or mentioned in the feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who inserted the feed item, often used for system-generated posts. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| HasContent | Bool | True |
Indicates whether the record has Content. | |
| HasLink | Bool | True |
Indicates whether the record has Link. | |
| HasFeedEntity | Bool | True |
Indicates whether the record has FeedEntity. | |
| HasVerifiedComment | Bool | True |
Indicates whether the record has VerifiedComment. | |
| IsClosed | Bool | True |
Indicates whether the record is closed. | |
| Status | String | False |
Status of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the last modification. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. |
Defines field-level security settings, specifying user access permissions for individual fields.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the field permission entry. | |
| ParentId | String | False |
ID of the parent object, typically referencing the permission set or profile. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SobjectType | String | False |
API name of the object that the field belongs to. | |
| Field | String | False |
Fully qualified API name of the field the permissions apply to. | |
| PermissionsEdit | Bool | False |
Indicates whether users can edit the field (true) or not (false). | |
| PermissionsRead | Bool | False |
Indicates whether users can read the field (true) or not (false). | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for when the record was last modified by the system. |
Schema file for FinanceBalanceSnapshot.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| FinanceBalanceSnapshotNumber | String | True |
FinanceBalanceSnapshot identification number. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| FinanceTransactionId | String | True |
ID of the FinanceTransaction associated with this record. | |
| ReferenceEntityId | String | True |
ID of the ReferenceEntity associated with this record. | |
| ReferenceEntityIdType | String | False |
Specifies the type of the 'ReferenceEntityId' polymorphic field to use in the statement. | |
| ReferenceEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'ReferenceEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ReferenceEntityType | String | True |
Type classification for ReferenceEntity. | |
| EventType | String | True |
Type classification for Event. | |
| ChargeAmount | Decimal | True |
Field containing ChargeAmount information. | |
| AdjustmentAmount | Decimal | True |
Field containing AdjustmentAmount information. | |
| Subtotal | Decimal | True |
Subtotal amount before tax. | |
| TaxAmount | Decimal | True |
Field containing TaxAmount information. | |
| TotalAmountWithTax | Decimal | True |
Field containing TotalAmountWithTax information. | |
| ImpactAmount | Decimal | True |
Field containing ImpactAmount information. | |
| Balance | Decimal | True |
Field containing Balance information. | |
| AccountId | String | True |
Account.Id |
ID of the Account associated with this record. |
| TransactionDate | Datetime | True |
Date associated with Transaction. | |
| EffectiveDate | Datetime | True |
Date associated with Effective. | |
| DueDate | Datetime | True |
Due date for the task or activity. | |
| BaseCurrencyIsoCode | String | True |
Field containing BaseCurrencyIsoCode information. | |
| BaseCurrencyFxRate | Double | True |
Field containing BaseCurrencyFxRate information. | |
| BaseCurrencyFxDate | Date | True |
Date associated with BaseCurrencyFx. | |
| BaseCurrencyAmount | Decimal | True |
Field containing BaseCurrencyAmount information. | |
| BaseCurrencyBalance | Decimal | True |
Field containing BaseCurrencyBalance information. | |
| LegalEntityId | String | True |
ID of the LegalEntity associated with this record. | |
| LegalEntityIdType | String | False |
Specifies the type of the 'LegalEntityId' polymorphic field to use in the statement. | |
| LegalEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'LegalEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| OriginalReferenceEntityType | String | True |
Type classification for OriginalReferenceEntity. | |
| OriginalEventType | String | True |
Type classification for OriginalEvent. | |
| FinanceSystemTransactionNumber | String | False |
FinanceSystemTransaction identification number. | |
| FinanceSystemName | String | False |
Field containing FinanceSystemName information. | |
| FinanceSystemIntegrationMode | String | False |
Field containing FinanceSystemIntegrationMode information. | |
| FinanceSystemIntegrationStatus | String | False |
Status of the FinanceSystemIntegration. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FinanceTransaction.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| FinanceTransactionNumber | String | True |
FinanceTransaction identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ReferenceEntityId | String | False |
ID of the ReferenceEntity associated with this record. | |
| ReferenceEntityIdType | String | False |
Specifies the type of the 'ReferenceEntityId' polymorphic field to use in the statement. | |
| ReferenceEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'ReferenceEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ReferenceEntityType | String | False |
Type classification for ReferenceEntity. | |
| EventAction | String | False |
Field containing EventAction information. | |
| EventType | String | False |
Type classification for Event. | |
| ChargeAmount | Decimal | False |
Field containing ChargeAmount information. | |
| AdjustmentAmount | Decimal | False |
Field containing AdjustmentAmount information. | |
| Subtotal | Decimal | False |
Subtotal amount before tax. | |
| TaxAmount | Decimal | False |
Field containing TaxAmount information. | |
| TotalAmountWithTax | Decimal | False |
Field containing TotalAmountWithTax information. | |
| ImpactAmount | Decimal | False |
Field containing ImpactAmount information. | |
| ResultingBalance | Decimal | False |
Field containing ResultingBalance information. | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| SourceEntityId | String | False |
ID of the SourceEntity associated with this record. | |
| SourceEntityIdType | String | False |
Specifies the type of the 'SourceEntityId' polymorphic field to use in the statement. | |
| SourceEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'SourceEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| DestinationEntityId | String | False |
ID of the DestinationEntity associated with this record. | |
| DestinationEntityIdType | String | False |
Specifies the type of the 'DestinationEntityId' polymorphic field to use in the statement. | |
| DestinationEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'DestinationEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| TransactionDate | Datetime | False |
Date associated with Transaction. | |
| EffectiveDate | Datetime | False |
Date associated with Effective. | |
| DueDate | Datetime | False |
Due date for the task or activity. | |
| BaseCurrencyIsoCode | String | False |
Field containing BaseCurrencyIsoCode information. | |
| BaseCurrencyFxRate | Double | False |
Field containing BaseCurrencyFxRate information. | |
| BaseCurrencyFxDate | Date | False |
Date associated with BaseCurrencyFx. | |
| BaseCurrencyAmount | Decimal | False |
Field containing BaseCurrencyAmount information. | |
| BaseCurrencyBalance | Decimal | False |
Field containing BaseCurrencyBalance information. | |
| LegalEntityId | String | False |
ID of the LegalEntity associated with this record. | |
| LegalEntityIdType | String | False |
Specifies the type of the 'LegalEntityId' polymorphic field to use in the statement. | |
| LegalEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'LegalEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| CreationMode | String | True |
Field containing CreationMode information. | |
| ParentReferenceEntityId | String | False |
ID of the ParentReferenceEntity associated with this record. | |
| ParentReferenceEntityIdType | String | False |
Specifies the type of the 'ParentReferenceEntityId' polymorphic field to use in the statement. | |
| ParentReferenceEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentReferenceEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| OriginalReferenceEntityType | String | True |
Type classification for OriginalReferenceEntity. | |
| OriginalEventType | String | True |
Type classification for OriginalEvent. | |
| OriginalEventAction | String | True |
Field containing OriginalEventAction information. | |
| OriginalCreditGlAccountName | String | True |
Field containing OriginalCreditGlAccountName information. | |
| OriginalCreditGlAccountNumber | String | True |
OriginalCreditGlAccount identification number. | |
| OriginalDebitGlAccountName | String | True |
Field containing OriginalDebitGlAccountName information. | |
| OriginalDebitGlAccountNumber | String | True |
OriginalDebitGlAccount identification number. | |
| OriginalFinancePeriodName | String | True |
Field containing OriginalFinancePeriodName information. | |
| OriginalFinancePeriodStartDate | String | True |
Date associated with OriginalFinancePeriodStart. | |
| OriginalFinancePeriodEndDate | String | True |
Date associated with OriginalFinancePeriodEnd. | |
| OriginalFinancePeriodStatus | String | True |
Status of the OriginalFinancePeriod. | |
| OriginalGlRuleName | String | True |
Field containing OriginalGlRuleName information. | |
| OriginalGlTreatmentName | String | True |
Field containing OriginalGlTreatmentName information. | |
| OriginalFinanceBookName | String | True |
Field containing OriginalFinanceBookName information. | |
| FinanceSystemTransactionNumber | String | False |
FinanceSystemTransaction identification number. | |
| FinanceSystemName | String | False |
Field containing FinanceSystemName information. | |
| FinanceSystemIntegrationMode | String | False |
Field containing FinanceSystemIntegrationMode information. | |
| FinanceSystemIntegrationStatus | String | False |
Status of the FinanceSystemIntegration. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowInterview.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | True |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| CurrentElement | String | True |
Field containing CurrentElement information. | |
| InterviewLabel | String | True |
Field containing InterviewLabel information. | |
| PauseLabel | String | True |
Field containing PauseLabel information. | |
| Guid | String | True |
ID of the Gu associated with this record. | |
| WasPausedFromScreen | Bool | True |
Field containing WasPausedFromScreen information. | |
| FlowVersionViewId | String | True |
ID of the FlowVersionView associated with this record. | |
| InterviewStatus | String | True |
Status of the Interview. | |
| EngineType | String | True |
Type classification for Engine. | |
| Error | String | True |
Field containing Error information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for FlowOrchestration.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| OrchestrationDefinition | String | True |
Field containing OrchestrationDefinition information. | |
| Description | String | False |
Text description of the record. | |
| TriggerType | String | True |
Type classification for Trigger. | |
| OrchestrationType | String | True |
Type classification for Orchestration. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| ManageableState | String | True |
State or province for Manageable address. | |
| ActiveVersionId | String | True |
ID of the ActiveVersion associated with this record. | |
| Status | String | True |
Status of the record. | |
| IsCitizenEnabled | Bool | True |
Indicates whether the record has the CitizenEnabled characteristic. | |
| OrchestrationLabel | String | False |
Field containing OrchestrationLabel information. | |
| ApiName | String | True |
The name used when accessing the resource using the API. | |
| InstalledPackageName | String | True |
Field containing InstalledPackageName information. | |
| RunCount | Int | True |
Number of Run associated with this record. | |
| CompletionRate | Double | True |
Field containing CompletionRate information. | |
| AverageRunTime | Int | True |
Field containing AverageRunTime information. | |
| FailedRunCount | Int | True |
Number of FailedRun associated with this record. | |
| ApiVersion | Int | True |
Field containing ApiVersion information. | |
| IsTemplate | Bool | True |
Indicates whether the record has the Template characteristic. | |
| SourceTemplateId | String | True |
ID of the SourceTemplate associated with this record. | |
| IsOverridable | Bool | True |
Indicates whether the record has the Overridable characteristic. | |
| OverriddenById | String | True |
ID of the OverriddenBy associated with this record. | |
| OverriddenOrchestrationId | String | True |
ID of the OverriddenOrchestration associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowOrchestrationInstance.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Status | String | False |
Status of the record. | |
| InterviewId | String | False |
ID of the Interview associated with this record. | |
| OrchestrationDeveloperName | String | True |
Field containing OrchestrationDeveloperName information. | |
| OrchestrationLabel | String | True |
Field containing OrchestrationLabel information. | |
| Duration | String | True |
Field containing Duration information. | |
| CurrentStage | String | True |
Field containing CurrentStage information. | |
| TriggeringRecord | String | False |
Field containing TriggeringRecord information. | |
| TriggeringRecordType | String | False |
Type classification for TriggeringRecord. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowOrchestrationLog.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrchestrationName | String | True |
Field containing OrchestrationName information. | |
| OrchestrationVersion | Int | True |
Field containing OrchestrationVersion information. | |
| OrchestrationInstanceId | String | True |
ID of the OrchestrationInstance associated with this record. | |
| StageName | String | True |
Current stage of this record. | |
| StepName | String | True |
Field containing StepName information. | |
| Actor | String | True |
Field containing Actor information. | |
| Kind | String | True |
Field containing Kind information. | |
| Timestamp | Datetime | True |
Field containing Timestamp information. | |
| Duration | String | True |
Field containing Duration information. | |
| Context | String | True |
Field containing Context information. | |
| AssigneeType | String | True |
Type classification for Assignee. | |
| Assignee | String | True |
Field containing Assignee information. | |
| Comments | String | True |
Field containing Comments information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowOrchestrationStageInstance.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrchestrationInstanceId | String | True |
ID of the OrchestrationInstance associated with this record. | |
| Status | String | True |
Status of the record. | |
| Position | Int | True |
Field containing Position information. | |
| Label | String | True |
Field containing Label information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowOrchestrationStepInstance.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrchestrationInstanceId | String | True |
ID of the OrchestrationInstance associated with this record. | |
| StageInstanceId | String | True |
ID of the StageInstance associated with this record. | |
| StepType | String | True |
Type classification for Step. | |
| Status | String | True |
Status of the record. | |
| Label | String | True |
Field containing Label information. | |
| Description | String | True |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowOrchestrationWorkItem.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| StepInstanceId | String | True |
ID of the StepInstance associated with this record. | |
| Status | String | True |
Status of the record. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| RelatedRecordIdType | String | False |
Specifies the type of the 'RelatedRecordId' polymorphic field to use in the statement. | |
| RelatedRecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Label | String | True |
Field containing Label information. | |
| Description | String | True |
Text description of the record. | |
| AssigneeId | String | False |
ID of the Assignee associated with this record. | |
| AssigneeIdType | String | False |
Specifies the type of the 'AssigneeId' polymorphic field to use in the statement. | |
| AssigneeIdExternalFieldName | String | False |
Specifies the external field name of the 'AssigneeId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ScreenFlow | String | True |
Field containing ScreenFlow information. | |
| ScreenFlowInputs | String | True |
Field containing ScreenFlowInputs information. | |
| ElapsedTimeSinceCreationInSec | String | True |
Field containing ElapsedTimeSinceCreationInSec information. | |
| ElapsedTimeSinceAsgntInSec | String | True |
Field containing ElapsedTimeSinceAsgntInSec information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowRecord.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| FlowDefinition | String | True |
Field containing FlowDefinition information. | |
| AssociatedRecordId | String | False |
ID of the AssociatedRecord associated with this record. | |
| AssociatedRecordIdType | String | False |
Specifies the type of the 'AssociatedRecordId' polymorphic field to use in the statement. | |
| AssociatedRecordIdExternalFieldName | String | False |
Specifies the external field name of the 'AssociatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Description | String | False |
Text description of the record. | |
| Type | String | True |
Type of account or classification. | |
| ProgressStatus | String | True |
Status of the Progress. | |
| ScheduledStartDate | Datetime | True |
Date associated with ScheduledStart. | |
| ErrorCode | String | True |
Field containing ErrorCode information. | |
| ErrorDetails | String | True |
Field containing ErrorDetails information. | |
| FlowCategory | String | False |
Field containing FlowCategory information. | |
| FlowSubcategory | String | False |
Field containing FlowSubcategory information. | |
| IsPaused | Bool | True |
Indicates whether the record has the Paused characteristic. | |
| FlowType | String | True |
Type classification for Flow. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| ManageableState | String | True |
State or province for Manageable address. | |
| ActiveVersionId | String | True |
ID of the ActiveVersion associated with this record. | |
| ApiVersion | Int | True |
Field containing ApiVersion information. | |
| IsTemplate | Bool | True |
Indicates whether the record has the Template characteristic. | |
| TriggerObjectOrEventLabel | String | True |
Field containing TriggerObjectOrEventLabel information. | |
| Builder | String | True |
Field containing Builder information. | |
| SourceTemplateId | String | True |
FlowRecord.Id |
ID of the SourceTemplate associated with this record. |
| IsOverridable | Bool | True |
Indicates whether the record has the Overridable characteristic. | |
| OverriddenById | String | True |
FlowRecord.Id |
ID of the OverriddenBy associated with this record. |
| OverriddenFlowId | String | True |
FlowRecord.Id |
ID of the OverriddenFlow associated with this record. |
| StartSource | String | True |
Field containing StartSource information. | |
| IsCitizenEnabled | Bool | True |
Indicates whether the record has the CitizenEnabled characteristic. | |
| FlowLabel | String | False |
Field containing FlowLabel information. | |
| ApiName | String | True |
The name used when accessing the resource using the API. | |
| InstalledPackageName | String | True |
Field containing InstalledPackageName information. | |
| CapacityCategory | String | True |
Field containing CapacityCategory information. | |
| AreMetricsLoggedToDataCloud | Bool | True |
Field containing AreMetricsLoggedToDataCloud information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowRecordRelation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| RelatedRecordId | String | False |
ID of the record associated with this feed item. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for FlowRecordVersion.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| FlowRecordId | String | True |
FlowRecord.Id |
ID of the FlowRecord associated with this record. |
| VersionNumber | Int | True |
Version identification number. | |
| ActivatedById | String | True |
User.Id |
ID of the ActivatedBy associated with this record. |
| ActivatedDate | Datetime | True |
Date associated with Activated. | |
| ProgressStatus | String | True |
Status of the Progress. | |
| Entries | Int | True |
Field containing Entries information. | |
| Exits | Int | True |
Field containing Exits information. | |
| Errors | Int | True |
Field containing Errors information. | |
| IsPaused | Bool | True |
Indicates whether the record has the Paused characteristic. | |
| PausingUserId | String | True |
User.Id |
ID of the PausingUser associated with this record. |
| PausedDate | Datetime | True |
Date associated with Paused. | |
| ResumingUserId | String | True |
User.Id |
ID of the ResumingUser associated with this record. |
| ResumedDate | Datetime | True |
Date associated with Resumed. | |
| ReasonPaused | String | True |
Field containing ReasonPaused information. | |
| ScheduledStartDate | Datetime | True |
Date associated with ScheduledStart. | |
| FlowType | String | True |
Type classification for Flow. | |
| Status | String | True |
Status of the record. | |
| Description | String | True |
Text description of the record. | |
| RunInMode | String | True |
Field containing RunInMode information. | |
| ApiVersion | Double | True |
Field containing ApiVersion information. | |
| IsTemplate | Bool | True |
Indicates whether the record has the Template characteristic. | |
| TriggerObjectOrEventLabel | String | True |
Field containing TriggerObjectOrEventLabel information. | |
| Builder | String | True |
Field containing Builder information. | |
| SourceTemplateId | String | True |
FlowRecord.Id |
ID of the SourceTemplate associated with this record. |
| IsOverridable | Bool | True |
Indicates whether the record has the Overridable characteristic. | |
| OverriddenById | String | True |
FlowRecord.Id |
ID of the OverriddenBy associated with this record. |
| OverriddenFlowId | String | True |
FlowRecord.Id |
ID of the OverriddenFlow associated with this record. |
| CapacityCategory | String | True |
Field containing CapacityCategory information. | |
| AreMetricsLoggedToDataCloud | Bool | True |
Field containing AreMetricsLoggedToDataCloud information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for FlowStageRelation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| StageOrder | Int | True |
Field containing StageOrder information. | |
| StageType | String | True |
Type classification for Stage. | |
| StageLabel | String | True |
Field containing StageLabel information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Represents folders used for organizing reports, dashboards, and documents in Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the folder record. | |
| ParentId | String | False |
Folder.Id |
ID of the parent object in the hierarchy. |
| Name | String | False |
Display name of the folder. | |
| DeveloperName | String | False |
API name of the folder, used for referencing in code. | |
| AccessType | String | False |
Specifies the type of access allowed for the folder, such as 'Public' or 'Private'. | |
| IsReadonly | Bool | False |
Indicates whether the folder is read-only (true) or editable (false). | |
| Type | String | False |
Type of folder, such as 'Report', 'Dashboard', or 'Email'. | |
| NamespacePrefix | String | True |
Namespace prefix associated with the folder, if part of a managed package. | |
| CreatedDate | Datetime | True |
Date and time when the folder was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the folder. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the folder. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp of the last system update to the folder record. | |
| LastModifiedDate | Datetime | True |
Date and time when the folder was last modified. |
Manages public and private groups used for collaboration and sharing within Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the group. | |
| Name | String | False |
Display name of the group. | |
| DeveloperName | String | False |
API name of the group used for development or integration purposes. | |
| RelatedId | String | True |
ID of the related object, such as a queue or role associated with the group. | |
| RelatedIdType | String | False |
Specifies the type of the 'RelatedId' polymorphic field to use in the statement. | |
| RelatedIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Type | String | False |
Type of the group, such as 'Regular', 'Role', or 'Queue'. | |
| String | False |
Email address associated with the group. | ||
| OwnerId | String | True |
ID of the user who owns or manages the group. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| DoesSendEmailToMembers | Bool | False |
Indicates whether emails are sent to group members (true) or not (false). | |
| DoesIncludeBosses | Bool | False |
Indicates whether managers of group members are automatically included (true) or not (false). | |
| CreatedDate | Datetime | True |
Date and time when the group was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the group. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the group. |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp used by the system to track the last modification. | |
| LastModifiedDate | Datetime | True |
Date and time when the group was last modified. |
Stores group membership details, listing users assigned to specific public or private groups.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the group member entry. | |
| GroupId | String | False |
Group.Id |
ID of the group to which the user or group is assigned. |
| UserOrGroupId | String | False |
ID of the user or group that is a member of the group. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp used by the system to track the last modification. |
Schema file for GtwyProvPaymentMethodType.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| PaymentGatewayProviderId | String | False |
ID of the PaymentGatewayProvider associated with this record. | |
| Comments | String | False |
Field containing Comments information. | |
| PaymentMethodType | String | False |
Type classification for PaymentMethod. | |
| GtwyProviderPaymentMethodType | String | False |
Type classification for GtwyProviderPaymentMethod. | |
| RecordTypeId | String | False |
RecordType.Id |
ID of the record type assigned to this object. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for GuestUserAnomalyEventStoreFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Tracks custom hashtags used in Chatter posts, allowing content to be categorized and searched.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the hashtag definition. | |
| NameNorm | String | True |
Normalized version of the hashtag text, used for consistent matching. | |
| Name | String | True |
Original text of the hashtag as entered by users. | |
| HashtagCount | Int | True |
Number of times this hashtag has been used across the platform. | |
| CreatedDate | Datetime | True |
Date and time when the hashtag definition was created. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last modification. |
Stores company-wide holidays, which can be referenced in business hours and case escalation rules.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the holiday record. | |
| Name | String | False |
Name of the holiday. | |
| Description | String | False |
Description of the holiday. | |
| IsAllDay | Bool | False |
Indicates whether the holiday spans the entire day. | |
| ActivityDate | Date | False |
Date on which the holiday occurs. | |
| StartTimeInMinutes | Int | False |
Start time of the holiday in minutes from midnight. | |
| EndTimeInMinutes | Int | False |
End time of the holiday in minutes from midnight. | |
| CreatedDate | Datetime | True |
Date and time when the holiday record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the holiday record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the holiday record. |
| IsRecurrence | Bool | False |
Indicates whether the holiday is part of a recurring series. | |
| RecurrenceStartDate | Date | False |
Start date of the recurring holiday series. | |
| RecurrenceEndDateOnly | Date | False |
End date of the recurring holiday series. | |
| RecurrenceType | String | False |
Type of recurrence for the holiday, such as daily or weekly. | |
| RecurrenceInterval | Int | False |
Interval between recurring holiday events, based on the recurrence type. | |
| RecurrenceDayOfWeekMask | Int | False |
Bitmask representing the days of the week on which the holiday recurs. | |
| RecurrenceDayOfMonth | Int | False |
Specific day of the month on which the holiday recurs. | |
| RecurrenceInstance | String | False |
Recurrence instance, such as first, second, or last occurrence within the month. | |
| RecurrenceMonthOfYear | String | False |
Month in which the holiday recurs for yearly recurrence types. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last update to the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the holiday record was last modified. |
Schema file for Idea.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Title | String | False |
Title of the contact or person, for example CEO or Vice President. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| RecordTypeId | String | True |
RecordType.Id |
ID of the record type assigned to this object. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| CommunityId | String | False |
Community.Id |
ID of the Community associated with this record. |
| Body | String | False |
The content of the feed item or post. | |
| VoteScore | Double | True |
Field containing VoteScore information. | |
| VoteTotal | Double | True |
Field containing VoteTotal information. | |
| Categories | String | False |
Field containing Categories information. | |
| Status | String | False |
Status of the record. | |
| LastCommentId | String | True |
IdeaComment.Id |
ID of the LastComment associated with this record. |
| ParentIdeaId | String | True |
Idea.Id |
ID of the ParentIdea associated with this record. |
| IsHtml | Bool | True |
Indicates whether the record has the Html characteristic. | |
| IsMerged | Bool | True |
Indicates whether the record has the Merged characteristic. | |
| CreatorFullPhotoUrl | String | True |
Field containing CreatorFullPhotoUrl information. | |
| CreatorSmallPhotoUrl | String | True |
Field containing CreatorSmallPhotoUrl information. | |
| CreatorName | String | True |
Field containing CreatorName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for IdeaComment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IdeaId | String | False |
Idea.Id |
ID of the Idea associated with this record. |
| CommunityId | String | True |
Community.Id |
ID of the Community associated with this record. |
| CommentBody | String | False |
Field containing CommentBody information. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| IsHtml | Bool | True |
Indicates whether the record has the Html characteristic. | |
| CreatorFullPhotoUrl | String | True |
Field containing CreatorFullPhotoUrl information. | |
| CreatorSmallPhotoUrl | String | True |
Field containing CreatorSmallPhotoUrl information. | |
| CreatorName | String | True |
Field containing CreatorName information. | |
| UpVotes | Int | True |
Field containing UpVotes information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. |
Schema file for IframeWhiteListUrl.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Url | String | False |
Field containing Url information. | |
| Context | String | False |
Field containing Context information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Image.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ImageViewType | String | False |
Type classification for ImageView. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| ImageClass | String | False |
Field containing ImageClass information. | |
| ImageClassObjectType | String | False |
Type classification for ImageClassObject. | |
| ContentDocumentId | String | False |
ID of the ContentDocument associated with this record. | |
| CapturedAngle | String | False |
Field containing CapturedAngle information. | |
| Title | String | False |
Title of the contact or person, for example CEO or Vice President. | |
| AlternateText | String | False |
Field containing AlternateText information. | |
| Url | String | False |
Field containing Url information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ImageFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
Image.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for Individual.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
User.Id |
ID of the user who owns the record. |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| LastName | String | False |
Last name of the contact or person account. Required for person accounts. | |
| FirstName | String | False |
First name of the contact or person account. | |
| Salutation | String | False |
Honorific abbreviation, word, or phrase to be used in front of the name in greetings. | |
| Name | String | True |
Name of the record. | |
| HasOptedOutTracking | Bool | False |
Indicates whether the record has OptedOutTracking. | |
| HasOptedOutProfiling | Bool | False |
Indicates whether the record has OptedOutProfiling. | |
| HasOptedOutProcessing | Bool | False |
Indicates whether the record has OptedOutProcessing. | |
| HasOptedOutSolicit | Bool | False |
Indicates whether the record has OptedOutSolicit. | |
| ShouldForget | Bool | False |
Field containing ShouldForget information. | |
| SendIndividualData | Bool | False |
Field containing SendIndividualData information. | |
| CanStorePiiElsewhere | Bool | False |
Indicates whether the user or record can perform StorePiiElsewhere action. | |
| HasOptedOutGeoTracking | Bool | False |
Indicates whether the record has OptedOutGeoTracking. | |
| BirthDate | Date | False |
The contact's birthdate. | |
| DeathDate | Date | False |
Date associated with Death. | |
| ConvictionsCount | Int | False |
Number of Convictions associated with this record. | |
| ChildrenCount | Int | False |
Number of Children associated with this record. | |
| MilitaryService | String | False |
Field containing MilitaryService information. | |
| IsHomeOwner | Bool | False |
Indicates whether the record has the HomeOwner characteristic. | |
| Occupation | String | False |
Field containing Occupation information. | |
| Website | String | False |
Website URL for this account. | |
| IndividualsAge | String | False |
Field containing IndividualsAge information. | |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| MasterRecordId | String | True |
Individual.Id |
If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. |
| ConsumerCreditScore | Int | False |
Field containing ConsumerCreditScore information. | |
| ConsumerCreditScoreProviderName | String | False |
Field containing ConsumerCreditScoreProviderName information. | |
| InfluencerRating | Int | False |
Field containing InfluencerRating information. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Invoice.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DocumentNumber | String | True |
Document identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ReferenceEntityId | String | False |
ID of the ReferenceEntity associated with this record. | |
| ReferenceEntityIdType | String | False |
Specifies the type of the 'ReferenceEntityId' polymorphic field to use in the statement. | |
| ReferenceEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'ReferenceEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| InvoiceNumber | String | False |
Invoice identification number. | |
| BillingAccountId | String | False |
Account.Id |
ID of the BillingAccount associated with this record. |
| Status | String | True |
Status of the record. | |
| InvoiceDate | Date | False |
Date associated with Invoice. | |
| DueDate | Date | False |
Due date for the task or activity. | |
| BillToContactId | String | False |
Contact.Id |
ID of the BillToContact associated with this record. |
| Description | String | False |
Text description of the record. | |
| Balance | Decimal | True |
Field containing Balance information. | |
| TaxLocaleType | String | False |
Type classification for TaxLocale. | |
| TotalChargeTaxAmount | Decimal | True |
Field containing TotalChargeTaxAmount information. | |
| TotalChargeAmountWithTax | Decimal | True |
Field containing TotalChargeAmountWithTax information. | |
| TotalAdjustmentTaxAmount | Decimal | True |
Field containing TotalAdjustmentTaxAmount information. | |
| TotalAdjustmentAmountWithTax | Decimal | True |
Field containing TotalAdjustmentAmountWithTax information. | |
| IsInvoiceLocked | Bool | True |
Indicates whether the record has the InvoiceLocked characteristic. | |
| InvoiceLockedDateTime | Datetime | True |
Field containing InvoiceLockedDateTime information. | |
| WriteOffStatus | String | True |
Status of the WriteOff. | |
| WriteOffTotalChargeAmount | Decimal | True |
Field containing WriteOffTotalChargeAmount information. | |
| WriteOffTotalTaxAmount | Decimal | True |
Field containing WriteOffTotalTaxAmount information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for InvoiceFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
Invoice.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for InvoiceLine.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| InvoiceId | String | True |
Invoice.Id |
ID of the Invoice associated with this record. |
| ReferenceEntityItemId | String | False |
ID of the ReferenceEntityItem associated with this record. | |
| ReferenceEntityItemIdType | String | False |
Specifies the type of the 'ReferenceEntityItemId' polymorphic field to use in the statement. | |
| ReferenceEntityItemIdExternalFieldName | String | False |
Specifies the external field name of the 'ReferenceEntityItemId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| GroupReferenceEntityItemId | String | False |
ID of the GroupReferenceEntityItem associated with this record. | |
| GroupReferenceEntityItemIdType | String | False |
Specifies the type of the 'GroupReferenceEntityItemId' polymorphic field to use in the statement. | |
| GroupReferenceEntityItemIdExternalFieldName | String | False |
Specifies the external field name of the 'GroupReferenceEntityItemId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Quantity | Double | False |
Quantity of the product. | |
| UnitPrice | Decimal | False |
Price per unit for the product. | |
| ChargeAmount | Decimal | False |
Field containing ChargeAmount information. | |
| TaxAmount | Decimal | False |
Field containing TaxAmount information. | |
| AdjustmentAmount | Decimal | False |
Field containing AdjustmentAmount information. | |
| InvoiceStatus | String | True |
Status of the Invoice. | |
| Description | String | False |
Text description of the record. | |
| InvoiceLineStartDate | Date | False |
Date associated with InvoiceLineStart. | |
| InvoiceLineEndDate | Date | False |
Date associated with InvoiceLineEnd. | |
| ReferenceEntityItemType | String | False |
Type classification for ReferenceEntityItem. | |
| ReferenceEntityItemTypeCode | String | False |
Field containing ReferenceEntityItemTypeCode information. | |
| Product2Id | String | False |
Product2.Id |
ID of the Product associated with this record. |
| RelatedLineId | String | False |
InvoiceLine.Id |
ID of the RelatedLine associated with this record. |
| Type | String | True |
Type of account or classification. | |
| TaxName | String | False |
Field containing TaxName information. | |
| TaxCode | String | False |
Field containing TaxCode information. | |
| TaxRate | Double | False |
Field containing TaxRate information. | |
| TaxEffectiveDate | Date | False |
Date associated with TaxEffective. | |
| GrossUnitPrice | Decimal | False |
Field containing GrossUnitPrice information. | |
| ChargeTaxAmount | Decimal | True |
Field containing ChargeTaxAmount information. | |
| ChargeAmountWithTax | Decimal | True |
Field containing ChargeAmountWithTax information. | |
| AdjustmentTaxAmount | Decimal | True |
Field containing AdjustmentTaxAmount information. | |
| AdjustmentAmountWithTax | Decimal | True |
Field containing AdjustmentAmountWithTax information. | |
| TaxProcessingStatus | String | False |
Status of the TaxProcessing. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for InvoiceLineFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
InvoiceLine.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for IPAddressRange.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| IpAddressFeature | String | False |
Field containing IpAddressFeature information. | |
| IpAddressUsageScope | String | False |
Field containing IpAddressUsageScope information. | |
| StartAddress | String | False |
Field containing StartAddress information. | |
| EndAddress | String | False |
Field containing EndAddress information. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Tracks potential customers or business opportunities before they are converted into accounts and contacts.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the lead. | |
| IsDeleted | Bool | True |
Indicates whether the lead has been deleted. | |
| MasterRecordId | String | True |
Lead.Id |
ID of the master record for merged leads. |
| LastName | String | False |
Last name of the lead. | |
| FirstName | String | False |
First name of the lead. | |
| Salutation | String | False |
Salutation used for the lead, such as Mr. or Ms. | |
| Name | String | True |
Full name of the lead, including first and last name. | |
| Title | String | False |
Job title of the lead. | |
| Company | String | False |
Name of the company the lead is associated with. | |
| Street | String | False |
Street address of the lead's company or location. | |
| City | String | False |
City of the lead's address. | |
| State | String | False |
State or province of the lead's address. | |
| PostalCode | String | False |
Postal or ZIP code of the lead's address. | |
| Country | String | False |
Country of the lead's address. | |
| Latitude | Double | False |
Geographic latitude of the lead's address. | |
| Longitude | Double | False |
Geographic longitude of the lead's address. | |
| GeocodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| Phone | String | False |
Primary business phone number for the lead. | |
| MobilePhone | String | False |
Mobile phone number of the lead. | |
| Fax | String | False |
Fax number for the lead. | |
| String | False |
Email address of the lead. | ||
| Website | String | False |
Website associated with the lead's company. | |
| PhotoUrl | String | True |
URL for the contact's photo. | |
| Description | String | False |
Additional notes or description about the lead. | |
| LeadSource | String | False |
Origin of the lead, such as Web or Trade Show. | |
| Status | String | False |
Current status of the lead, such as Open or Qualified. | |
| Industry | String | False |
Industry the lead's company belongs to. | |
| Rating | String | False |
Rating of the lead, such as Hot, Warm, or Cold. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| AnnualRevenue | Decimal | False |
Annual revenue of the lead's company. | |
| NumberOfEmployees | Int | False |
Total number of employees at the lead's company. | |
| OwnerId | String | False |
ID of the user who owns this lead. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsConverted | Bool | False |
Indicates whether the lead has been converted. | |
| ConvertedDate | Date | True |
Date and time the lead was converted. | |
| ConvertedAccountId | String | True |
Account.Id |
ID of the account created from the converted lead. |
| ConvertedContactId | String | True |
Contact.Id |
ID of the contact created from the converted lead. |
| ConvertedOpportunityId | String | True |
Opportunity.Id |
ID of the opportunity created from the converted lead. |
| IsUnreadByOwner | Bool | False |
Indicates whether the lead is marked as unread by the owner. | |
| CreatedDate | Datetime | True |
Date and time the lead record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the lead. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the lead. |
| LastActivityDate | Date | True |
Date of the most recent activity on the lead. | |
| LastViewedDate | Datetime | True |
Date and time the lead was last viewed. | |
| LastReferencedDate | Datetime | True |
Date and time the lead was last referenced in a related record. | |
| Jigsaw | String | False |
Data.com key associated with the lead. | |
| JigsawContactId | String | True |
Data.com contact ID for the lead. | |
| CleanStatus | String | False |
Indicates the record's clean status compared with Data.com. | |
| CompanyDunsNumber | String | False |
The D-U-N-S number for the company. | |
| DandbCompanyId | String | False |
DandBCompany.Id |
ID of the DandbCompany associated with this record. |
| EmailBouncedReason | String | False |
Reason why an email sent to the lead bounced. | |
| EmailBouncedDate | Datetime | False |
Date and time the email sent to the lead bounced. | |
| IndividualId | String | False |
Individual.Id |
ID of the data privacy record associated with this record. |
| IsPriorityRecord | Bool | True |
Indicates whether the record has the PriorityRecord characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp for the last system update to the lead. | |
| LastModifiedDate | Datetime | True |
Date and time the lead record was last modified. |
Schema file for LeadCleanInfo.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LeadId | String | True |
Lead.Id |
ID of the Lead associated with this record. |
| LastMatchedDate | Datetime | True |
Date associated with LastMatched. | |
| LastStatusChangedDate | Datetime | True |
Date associated with LastStatusChanged. | |
| LastStatusChangedById | String | True |
User.Id |
ID of the LastStatusChangedBy associated with this record. |
| IsInactive | Bool | False |
Indicates whether the record has the Inactive characteristic. | |
| FirstName | String | True |
First name of the contact or person account. | |
| LastName | String | True |
Last name of the contact or person account. Required for person accounts. | |
| String | True |
Email address for the contact or person account. | ||
| Phone | String | True |
Phone number for the contact or account. | |
| Street | String | True |
Street address. | |
| City | String | True |
City portion of the address. | |
| State | String | True |
State or province portion of the address. | |
| PostalCode | String | True |
Postal code portion of the address. | |
| Country | String | True |
Country portion of the address. | |
| Latitude | Double | True |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | True |
Used with Latitude to specify the precise geolocation of an address. | |
| GeocodeAccuracy | String | True |
Accuracy level of the geocode for the address. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| AnnualRevenue | Decimal | True |
Estimated annual revenue of the account. | |
| NumberOfEmployees | Int | True |
Number of employees working at the company represented by this account. | |
| Industry | String | True |
Industry that the account belongs to. | |
| CompanyName | String | True |
Field containing CompanyName information. | |
| CompanyDunsNumber | String | True |
The D-U-N-S number for the company. | |
| ContactStatusDataDotCom | String | True |
Field containing ContactStatusDataDotCom information. | |
| IsReviewedName | Bool | False |
Indicates whether the record has the ReviewedName characteristic. | |
| IsReviewedEmail | Bool | False |
Indicates whether the record has the ReviewedEmail characteristic. | |
| IsReviewedPhone | Bool | False |
Indicates whether the record has the ReviewedPhone characteristic. | |
| IsReviewedAddress | Bool | False |
Indicates whether the record has the ReviewedAddress characteristic. | |
| IsReviewedTitle | Bool | False |
Indicates whether the record has the ReviewedTitle characteristic. | |
| IsReviewedAnnualRevenue | Bool | False |
Indicates whether the record has the ReviewedAnnualRevenue characteristic. | |
| IsReviewedNumberOfEmployees | Bool | False |
Indicates whether the record has the ReviewedNumberOfEmployees characteristic. | |
| IsReviewedIndustry | Bool | False |
Indicates whether the record has the ReviewedIndustry characteristic. | |
| IsReviewedCompanyName | Bool | False |
Indicates whether the record has the ReviewedCompanyName characteristic. | |
| IsReviewedCompanyDunsNumber | Bool | False |
Indicates whether the record has the ReviewedCompanyDunsNumber characteristic. | |
| IsReviewedDandBCompanyDunsNumber | Bool | False |
Indicates whether the record has the ReviewedDandBCompanyDunsNumber characteristic. | |
| IsDifferentFirstName | Bool | True |
Indicates whether the record has the DifferentFirstName characteristic. | |
| IsDifferentLastName | Bool | True |
Indicates whether the record has the DifferentLastName characteristic. | |
| IsDifferentEmail | Bool | True |
Indicates whether the record has the DifferentEmail characteristic. | |
| IsDifferentPhone | Bool | True |
Indicates whether the record has the DifferentPhone characteristic. | |
| IsDifferentStreet | Bool | True |
Indicates whether the record has the DifferentStreet characteristic. | |
| IsDifferentCity | Bool | True |
Indicates whether the record has the DifferentCity characteristic. | |
| IsDifferentState | Bool | True |
Indicates whether the record has the DifferentState characteristic. | |
| IsDifferentPostalCode | Bool | True |
Indicates whether the record has the DifferentPostalCode characteristic. | |
| IsDifferentCountry | Bool | True |
Indicates whether the record has the DifferentCountry characteristic. | |
| IsDifferentTitle | Bool | True |
Indicates whether the record has the DifferentTitle characteristic. | |
| IsDifferentAnnualRevenue | Bool | True |
Indicates whether the record has the DifferentAnnualRevenue characteristic. | |
| IsDifferentNumberOfEmployees | Bool | True |
Indicates whether the record has the DifferentNumberOfEmployees characteristic. | |
| IsDifferentIndustry | Bool | True |
Indicates whether the record has the DifferentIndustry characteristic. | |
| IsDifferentCompanyName | Bool | True |
Indicates whether the record has the DifferentCompanyName characteristic. | |
| IsDifferentCompanyDunsNumber | Bool | True |
Indicates whether the record has the DifferentCompanyDunsNumber characteristic. | |
| IsDifferentDandBCompanyDunsNumber | Bool | True |
Indicates whether the record has the DifferentDandBCompanyDunsNumber characteristic. | |
| IsDifferentStateCode | Bool | True |
Indicates whether the record has the DifferentStateCode characteristic. | |
| IsDifferentCountryCode | Bool | True |
Indicates whether the record has the DifferentCountryCode characteristic. | |
| CleanedByJob | Bool | True |
Field containing CleanedByJob information. | |
| CleanedByUser | Bool | True |
Field containing CleanedByUser information. | |
| DandBCompanyDunsNumber | String | True |
DandBCompanyDuns identification number. | |
| DataDotComCompanyId | String | True |
ID of the DataDotComCompany associated with this record. | |
| IsFlaggedWrongName | Bool | False |
Indicates whether the record has the FlaggedWrongName characteristic. | |
| IsFlaggedWrongEmail | Bool | False |
Indicates whether the record has the FlaggedWrongEmail characteristic. | |
| IsFlaggedWrongPhone | Bool | False |
Indicates whether the record has the FlaggedWrongPhone characteristic. | |
| IsFlaggedWrongAddress | Bool | False |
Indicates whether the record has the FlaggedWrongAddress characteristic. | |
| IsFlaggedWrongTitle | Bool | False |
Indicates whether the record has the FlaggedWrongTitle characteristic. | |
| IsFlaggedWrongAnnualRevenue | Bool | False |
Indicates whether the record has the FlaggedWrongAnnualRevenue characteristic. | |
| IsFlaggedWrongNumberOfEmployees | Bool | False |
Indicates whether the record has the FlaggedWrongNumberOfEmployees characteristic. | |
| IsFlaggedWrongIndustry | Bool | False |
Indicates whether the record has the FlaggedWrongIndustry characteristic. | |
| IsFlaggedWrongCompanyName | Bool | False |
Indicates whether the record has the FlaggedWrongCompanyName characteristic. | |
| IsFlaggedWrongCompanyDunsNumber | Bool | False |
Indicates whether the record has the FlaggedWrongCompanyDunsNumber characteristic. | |
| DataDotComId | String | True |
ID of the DataDotCom associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Captures Chatter activity, including posts and updates, related to Lead records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the lead feed item. | |
| ParentId | String | True |
Lead.Id |
ID of the lead record associated with the feed item. |
| Type | String | True |
Type of feed item, such as text post, file, or link. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
Number of comments on the feed item. | |
| LikeCount | Int | True |
Number of likes the feed item has received. | |
| Title | String | True |
Title of the feed item, if applicable. | |
| Body | String | True |
Main content or message of the feed item. | |
| LinkUrl | String | True |
URL of the link shared in the feed item, if applicable. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a record related to the feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user or process that inserted the feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System timestamp for the last update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for LegalEntity.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| CompanyName | String | False |
Field containing CompanyName information. | |
| Description | String | False |
Text description of the record. | |
| Status | String | False |
Status of the record. | |
| LegalEntityStreet | String | False |
Street address for LegalEntity purposes. | |
| LegalEntityCity | String | False |
City for LegalEntity address. | |
| LegalEntityState | String | False |
State or province for LegalEntity address. | |
| LegalEntityPostalCode | String | False |
Postal code for LegalEntity address. | |
| LegalEntityCountry | String | False |
Country for LegalEntity address. | |
| LegalEntityLatitude | Double | False |
Latitude coordinate for LegalEntity address geolocation. | |
| LegalEntityLongitude | Double | False |
Longitude coordinate for LegalEntity address geolocation. | |
| LegalEntityGeocodeAccuracy | String | False |
Accuracy level of the geocode for the LegalEntity address. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for LegalEntityFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
LegalEntity.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for LightningExperienceTheme.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| DefaultBrandingSetId | String | False |
BrandingSet.Id |
ID of the DefaultBrandingSet associated with this record. |
| ShouldOverrideLoadingImage | Bool | False |
Field containing ShouldOverrideLoadingImage information. | |
| Description | String | False |
Text description of the record. | |
| DesignSystemVersion | String | False |
Field containing DesignSystemVersion information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for LightningOnboardingConfig.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| CustomQuestion | String | False |
Field containing CustomQuestion information. | |
| CollaborationGroupId | String | False |
ID of the CollaborationGroup associated with this record. | |
| FeedbackFormDaysFrequency | Int | False |
Field containing FeedbackFormDaysFrequency information. | |
| SendFeedbackToSalesforce | Bool | False |
Field containing SendFeedbackToSalesforce information. | |
| IsCustom | Bool | False |
Indicates whether the record has the Custom characteristic. | |
| PromptDelayTime | Int | False |
Field containing PromptDelayTime information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ListEmail.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Subject | String | False |
Subject or title of the activity. | |
| HtmlBody | String | False |
Field containing HtmlBody information. | |
| TextBody | String | False |
Field containing TextBody information. | |
| FromName | String | False |
Field containing FromName information. | |
| FromAddress | String | False |
Field containing FromAddress information. | |
| ReplyToAddress | String | False |
Field containing ReplyToAddress information. | |
| Status | String | False |
Status of the record. | |
| HasAttachment | Bool | True |
Indicates whether the record has Attachment. | |
| ScheduledDate | Datetime | False |
Date associated with Scheduled. | |
| TotalSent | Int | True |
Field containing TotalSent information. | |
| SentVia | String | True |
Field containing SentVia information. | |
| CampaignId | String | False |
Campaign.Id |
ID of the Campaign associated with this record. |
| IsTracked | Bool | True |
Indicates whether the record has the Tracked characteristic. | |
| RelatedToId | String | False |
ID of the RelatedTo associated with this record. | |
| RelatedToIdType | String | False |
Specifies the type of the 'RelatedToId' polymorphic field to use in the statement. | |
| RelatedToIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedToId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ListEmailIndividualRecipient.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ListEmailId | String | False |
ListEmail.Id |
ID of the ListEmail associated with this record. |
| RecipientId | String | False |
ID of the Recipient associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ListEmailRecipientSource.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ListEmailId | String | False |
ListEmail.Id |
ID of the ListEmail associated with this record. |
| SourceListId | String | False |
ID of the SourceList associated with this record. | |
| SourceListIdType | String | False |
Specifies the type of the 'SourceListId' polymorphic field to use in the statement. | |
| SourceListIdExternalFieldName | String | False |
Specifies the external field name of the 'SourceListId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SourceType | String | False |
Type classification for Source. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ListViewChart.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| SobjectType | String | False |
Type classification for Sobject. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OwnerId | String | False |
User.Id |
ID of the user who owns the record. |
| ChartType | String | False |
Type classification for Chart. | |
| GroupingField | String | False |
Field containing GroupingField information. | |
| AggregateField | String | False |
Field containing AggregateField information. | |
| AggregateType | String | False |
Type classification for Aggregate. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for LiveChatSensitiveDataRule.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Pattern | String | False |
Field containing Pattern information. | |
| Replacement | String | False |
Field containing Replacement information. | |
| IsEnabled | Bool | False |
Indicates whether the record has the Enabled characteristic. | |
| ActionType | String | False |
Type classification for Action. | |
| EnforceOn | Int | False |
Field containing EnforceOn information. | |
| Description | String | False |
Text description of the record. | |
| Priority | Int | False |
Priority level of the record. | |
| ProcessingType | String | False |
Type classification for Processing. | |
| Version | String | False |
Field containing Version information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Location.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| LocationType | String | False |
Type classification for Location. | |
| IsMobile | Bool | False |
Indicates whether the record has the Mobile characteristic. | |
| IsInventoryLocation | Bool | False |
Indicates whether the record has the InventoryLocation characteristic. | |
| RootLocationId | String | True |
Location.Id |
ID of the RootLocation associated with this record. |
| ExternalReference | String | False |
Field containing ExternalReference information. | |
| ShouldSyncWithOci | Bool | False |
Field containing ShouldSyncWithOci information. | |
| LogoId | String | False |
ContentAsset.Id |
ID of the Logo associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for LocationFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
Location.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for LocationGroup.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| LocationGroupName | String | False |
Field containing LocationGroupName information. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ExternalReference | String | False |
Field containing ExternalReference information. | |
| IsEnabled | Bool | False |
Indicates whether the record has the Enabled characteristic. | |
| ShouldSyncWithOci | Bool | False |
Field containing ShouldSyncWithOci information. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for LocationGroupAssignment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| LocationGroupAssignment | String | True |
Field containing LocationGroupAssignment information. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| LocationId | String | False |
Location.Id |
ID of the Location associated with this record. |
| LocationGroupId | String | False |
ID of the LocationGroup associated with this record. | |
| LocationExternalReference | String | True |
Field containing LocationExternalReference information. | |
| LocationGroupExternalReference | String | True |
Field containing LocationGroupExternalReference information. | |
| LocationName | String | True |
Field containing LocationName information. | |
| LocationGroupName | String | True |
Field containing LocationGroupName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for LocationGroupFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for LoginAnomalyEventStoreFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Stores IP address details associated with user logins, helping track security and access patterns.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the login IP record. | |
| UsersId | String | True |
User.Id |
ID of the user associated with the login IP. |
| SourceIp | String | True |
IP address from which the login attempt was made. | |
| IsAuthenticated | Bool | True |
Indicates whether the login attempt from this IP was successfully authenticated. | |
| ChallengeSentDate | Datetime | True |
Date and time when a challenge was sent to verify the login attempt. | |
| ChallengeMethod | String | True |
Method used to challenge the login attempt, such as email or SMS. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | True |
Date and time when the login IP record was created. |
Schema file for Macro.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Description | String | False |
Text description of the record. | |
| IsAlohaSupported | Bool | True |
Indicates whether the record has the AlohaSupported characteristic. | |
| IsLightningSupported | Bool | True |
Indicates whether the record has the LightningSupported characteristic. | |
| StartingContext | String | False |
Field containing StartingContext information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MacroInstruction.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MacroId | String | False |
Macro.Id |
ID of the Macro associated with this record. |
| Operation | String | False |
Field containing Operation information. | |
| Target | String | False |
Field containing Target information. | |
| Value | String | False |
Field containing Value information. | |
| ValueRecord | String | False |
Field containing ValueRecord information. | |
| SortOrder | Int | False |
Field containing SortOrder information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MacroUsage.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | True |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MacroId | String | True |
Macro.Id |
ID of the Macro associated with this record. |
| ContextRecord | String | True |
Field containing ContextRecord information. | |
| ExecutedInstructionCount | Int | True |
Number of ExecutedInstruction associated with this record. | |
| InstructionCount | Int | True |
Number of Instruction associated with this record. | |
| ExecutionEndTime | Datetime | True |
Field containing ExecutionEndTime information. | |
| UserId | String | True |
User.Id |
ID of the User associated with this record. |
| IsFromBulk | Bool | True |
Indicates whether the record has the FromBulk characteristic. | |
| AppContext | String | True |
Field containing AppContext information. | |
| ConditionCount | Int | True |
Number of Condition associated with this record. | |
| ExecutionState | String | True |
State or province for Execution address. | |
| DurationInMs | Int | True |
Field containing DurationInMs information. | |
| FailureReason | String | True |
Field containing FailureReason information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Manages mail merge templates used for generating personalized documents.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the mail merge template. | |
| IsDeleted | Bool | True |
Indicates whether the mail merge template has been deleted. | |
| Name | String | False |
Name of the mail merge template. | |
| Description | String | False |
Description of the mail merge template. | |
| Filename | String | False |
Name of the file associated with the mail merge template. | |
| BodyLength | Int | True |
Length of the template content in characters. | |
| Body | String | False |
Content of the mail merge template. | |
| LastUsedDate | Datetime | True |
Date and time when the template was last used. | |
| CreatedDate | Datetime | True |
Date and time when the template was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the template. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the template. |
| SecurityOptionsAttachmentScannedForXSS | Bool | False |
Field containing SecurityOptionsAttachmentScannedForXSS information. | |
| SecurityOptionsAttachmentHasXSSThreat | Bool | False |
Field containing SecurityOptionsAttachmentHasXSSThreat information. | |
| SecurityOptionsAttachmentScannedforFlash | Bool | False |
Field containing SecurityOptionsAttachmentScannedforFlash information. | |
| SecurityOptionsAttachmentHasFlash | Bool | False |
Field containing SecurityOptionsAttachmentHasFlash information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the last update of the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the template was last modified. |
Schema file for MessagingChannel.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| ChannelAddressIdentifier | String | True |
Field containing ChannelAddressIdentifier information. | |
| MessageType | String | False |
Type classification for Message. | |
| MessagingPlatformKey | String | False |
Field containing MessagingPlatformKey information. | |
| IsoCountryCode | String | False |
Indicates whether the record has the oCountryCode characteristic. | |
| PlatformType | String | False |
Type classification for Platform. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| RoutingType | String | False |
Type classification for Routing. | |
| TargetQueueId | String | False |
Group.Id |
ID of the TargetQueue associated with this record. |
| SessionHandlerId | String | False |
ID of the SessionHandler associated with this record. | |
| SessionHandlerIdType | String | False |
Specifies the type of the 'SessionHandlerId' polymorphic field to use in the statement. | |
| SessionHandlerIdExternalFieldName | String | False |
Specifies the external field name of the 'SessionHandlerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| FallbackQueueId | String | False |
Group.Id |
ID of the FallbackQueue associated with this record. |
| ConsentType | String | False |
Type classification for Consent. | |
| OptInPrompt | String | False |
Field containing OptInPrompt information. | |
| DoubleOptInPrompt | String | False |
Field containing DoubleOptInPrompt information. | |
| IsRequireDoubleOptIn | Bool | False |
Indicates whether the record has the RequireDoubleOptIn characteristic. | |
| InitialResponse | String | False |
Field containing InitialResponse information. | |
| EngagedResponse | String | False |
Field containing EngagedResponse information. | |
| ConversationEndResponse | String | False |
Field containing ConversationEndResponse information. | |
| OfflineAgentsResponse | String | False |
Field containing OfflineAgentsResponse information. | |
| OutsideBusinessHoursResponse | String | False |
Field containing OutsideBusinessHoursResponse information. | |
| BusinessHoursId | String | False |
ID of the business hours associated with this record. | |
| IsRestrictedToBusinessHours | Bool | False |
Indicates whether the record has the RestrictedToBusinessHours characteristic. | |
| LinkingPreference | String | False |
Field containing LinkingPreference information. | |
| IsLinkedRecordOpenedAsSubTab | Bool | False |
Indicates whether the record has the LinkedRecordOpenedAsSubTab characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MessagingChannelUsage.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MessagingChannelId | String | False |
ID of the MessagingChannel associated with this record. | |
| DeploymentType | String | False |
Type classification for Deployment. | |
| DeploymentStatus | String | False |
Status of the Deployment. | |
| ErrorReason | String | False |
Field containing ErrorReason information. | |
| RoutingOverride | String | False |
Field containing RoutingOverride information. | |
| DisabledTime | Datetime | True |
Field containing DisabledTime information. | |
| ConsentType | String | False |
Type classification for Consent. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MessagingEndUser.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| MessagingChannelId | String | False |
ID of the MessagingChannel associated with this record. | |
| MessageType | String | False |
Type classification for Message. | |
| MessagingPlatformKey | String | False |
Field containing MessagingPlatformKey information. | |
| Locale | String | False |
Field containing Locale information. | |
| ProfilePictureUrl | String | False |
Field containing ProfilePictureUrl information. | |
| HasInitialResponseSent | Bool | False |
Indicates whether the record has InitialResponseSent. | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| ContactId | String | False |
Contact.Id |
ID of the Contact associated with this record. |
| IsoCountryCode | String | False |
Indicates whether the record has the oCountryCode characteristic. | |
| MessagingConsentStatus | String | False |
Status of the MessagingConsent. | |
| LeadId | String | False |
Lead.Id |
ID of the Lead associated with this record. |
| IsFullyOptedIn | Bool | True |
Indicates whether the record has the FullyOptedIn characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MessagingSession.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| MessagingChannelId | String | False |
ID of the MessagingChannel associated with this record. | |
| MessagingEndUserId | String | False |
ID of the MessagingEndUser associated with this record. | |
| Status | String | False |
Status of the record. | |
| CaseId | String | False |
Case.Id |
ID of the Case associated with this record. |
| LeadId | String | False |
Lead.Id |
ID of the Lead associated with this record. |
| OpportunityId | String | False |
Opportunity.Id |
ID of the Opportunity associated with this record. |
| AcceptTime | Datetime | False |
Field containing AcceptTime information. | |
| StartTime | Datetime | False |
Field containing StartTime information. | |
| EndTime | Datetime | False |
Field containing EndTime information. | |
| Origin | String | False |
Field containing Origin information. | |
| AgentType | String | False |
Type classification for Agent. | |
| SessionKey | String | False |
Unique key identifying the user session. | |
| TargetUserId | String | False |
User.Id |
ID of the TargetUser associated with this record. |
| ChannelGroup | String | False |
Field containing ChannelGroup information. | |
| ChannelIntent | String | False |
Field containing ChannelIntent information. | |
| ChannelLocale | String | False |
Field containing ChannelLocale information. | |
| ConversationId | String | False |
Conversation.Id |
ID of the Conversation associated with this record. |
| EndUserAccountId | String | True |
Account.Id |
ID of the EndUserAccount associated with this record. |
| EndUserContactId | String | True |
Contact.Id |
ID of the EndUserContact associated with this record. |
| ChannelType | String | True |
Type classification for Channel. | |
| ChannelName | String | True |
Field containing ChannelName information. | |
| ChannelKey | String | True |
Field containing ChannelKey information. | |
| PreviewDetails | String | True |
Field containing PreviewDetails information. | |
| EndUserMessageCount | Int | True |
Number of EndUserMessage associated with this record. | |
| AgentMessageCount | Int | True |
Number of AgentMessage associated with this record. | |
| EndedByType | String | False |
Type classification for EndedBy. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MessagingSessionFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for MessagingSessionMetrics.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MessagingSessionId | String | False |
ID of the MessagingSession associated with this record. | |
| MessagingSessionMetricType | String | False |
Type classification for MessagingSessionMetric. | |
| MessagingSessionMetricValue | Int | False |
Field containing MessagingSessionMetricValue information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for MilestoneType.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Name | String | False |
Name of the record. | |
| Description | String | False |
Text description of the record. | |
| RecurrenceType | String | False |
Type classification for Recurrence. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MlFeatureValueMetric.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Feature | String | False |
Field containing Feature information. | |
| Date | Date | False |
Date associated with . | |
| MetricKey | String | False |
Field containing MetricKey information. | |
| MetricValue | Double | False |
Field containing MetricValue information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MobileApplicationDetail.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Version | String | False |
Field containing Version information. | |
| DevicePlatform | String | False |
Field containing DevicePlatform information. | |
| MinimumOsVersion | String | False |
Field containing MinimumOsVersion information. | |
| DeviceType | String | False |
Type classification for Device. | |
| ApplicationFileLength | Int | True |
Field containing ApplicationFileLength information. | |
| ApplicationIcon | String | False |
Field containing ApplicationIcon information. | |
| IsEnterpriseApp | Bool | False |
Indicates whether the record has the EnterpriseApp characteristic. | |
| AppInstallUrl | String | False |
Field containing AppInstallUrl information. | |
| ApplicationBundleIdentifier | String | False |
Field containing ApplicationBundleIdentifier information. | |
| ApplicationBinaryFileName | String | False |
Field containing ApplicationBinaryFileName information. | |
| ApplicationIconFileName | String | False |
Field containing ApplicationIconFileName information. | |
| ApplicationBinary | String | False |
Field containing ApplicationBinary information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Tracks mobile devices registered to access Salesforce, used for mobile security and authentication.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the mobile device registrar. | |
| IsDeleted | Boolean | True |
Indicates whether the mobile device registrar has been deleted. | |
| DeveloperName | String | False |
Unique name used to identify the mobile device registrar. | |
| Language | String | False |
Primary language associated with the mobile device registrar. | |
| MasterLabel | String | False |
Display label for the mobile device registrar. | |
| NamespacePrefix | String | True |
Namespace prefix that identifies the package this registrar belongs to. | |
| CreatedDate | Datetime | True |
Date and time when the mobile device registrar was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the mobile device registrar. |
| LastModifiedDate | Datetime | True |
Date and time when the mobile device registrar was last modified. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the mobile device registrar. |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the last update of the record. | |
| Provider | String | False |
Name of the Mobile Device Management (MDM) provider. | |
| MdmProviderEnrollEndpoint | String | False |
URL endpoint used by the MDM provider to enroll devices. | |
| MdmProviderPushAppEndpoint | String | False |
URL endpoint used by the MDM provider to push apps to devices. | |
| MdmProviderApiAccessToken | String | False |
Access token used to authenticate API calls to the MDM provider. | |
| MdmProviderApiUsername | String | False |
Username used for MDM provider API authentication. | |
| MdmProviderApiPassword | String | False |
Password used for MDM provider API authentication. |
Schema file for MsgChannelLanguageKeyword.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MasterLanguage | String | False |
Field containing MasterLanguage information. | |
| OptInKeywords | String | False |
Field containing OptInKeywords information. | |
| DoubleOptInKeywords | String | False |
Field containing DoubleOptInKeywords information. | |
| OptInConfirmation | String | False |
Field containing OptInConfirmation information. | |
| HelpKeywords | String | False |
Field containing HelpKeywords information. | |
| HelpResponse | String | False |
Field containing HelpResponse information. | |
| OptOutKeywords | String | False |
Field containing OptOutKeywords information. | |
| OptOutConfirmation | String | False |
Field containing OptOutConfirmation information. | |
| MessagingChannelId | String | False |
ID of the MessagingChannel associated with this record. | |
| CustomKeywords | String | False |
Field containing CustomKeywords information. | |
| CustomResponse | String | False |
Field containing CustomResponse information. | |
| MessagingChannelUsageId | String | False |
ID of the MessagingChannelUsage associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MsgChannelUsageExternalOrg.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MessagingChannelUsageId | String | False |
ID of the MessagingChannelUsage associated with this record. | |
| ExternalOrgIdentifier | String | False |
Field containing ExternalOrgIdentifier information. | |
| ExternalSubOrgIdentifier | String | False |
Field containing ExternalSubOrgIdentifier information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MutingPermissionSet.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| PermissionsEmailSingle | Bool | False |
Field containing PermissionsEmailSingle information. | |
| PermissionsEmailMass | Bool | False |
Field containing PermissionsEmailMass information. | |
| PermissionsEditTask | Bool | False |
Field containing PermissionsEditTask information. | |
| PermissionsEditEvent | Bool | False |
Field containing PermissionsEditEvent information. | |
| PermissionsExportReport | Bool | False |
Field containing PermissionsExportReport information. | |
| PermissionsImportPersonal | Bool | False |
Field containing PermissionsImportPersonal information. | |
| PermissionsDataExport | Bool | False |
Field containing PermissionsDataExport information. | |
| PermissionsManageUsers | Bool | False |
Field containing PermissionsManageUsers information. | |
| PermissionsEditPublicFilters | Bool | False |
Field containing PermissionsEditPublicFilters information. | |
| PermissionsEditPublicTemplates | Bool | False |
Field containing PermissionsEditPublicTemplates information. | |
| PermissionsModifyAllData | Bool | False |
Field containing PermissionsModifyAllData information. | |
| PermissionsEditBillingInfo | Bool | False |
Field containing PermissionsEditBillingInfo information. | |
| PermissionsManageCases | Bool | False |
Field containing PermissionsManageCases information. | |
| PermissionsMassInlineEdit | Bool | False |
Field containing PermissionsMassInlineEdit information. | |
| PermissionsEditKnowledge | Bool | False |
Field containing PermissionsEditKnowledge information. | |
| PermissionsManageKnowledge | Bool | False |
Field containing PermissionsManageKnowledge information. | |
| PermissionsManageSolutions | Bool | False |
Field containing PermissionsManageSolutions information. | |
| PermissionsCustomizeApplication | Bool | False |
Field containing PermissionsCustomizeApplication information. | |
| PermissionsEditReadonlyFields | Bool | False |
Field containing PermissionsEditReadonlyFields information. | |
| PermissionsRunReports | Bool | False |
Field containing PermissionsRunReports information. | |
| PermissionsViewSetup | Bool | False |
Field containing PermissionsViewSetup information. | |
| PermissionsTransferAnyEntity | Bool | False |
Field containing PermissionsTransferAnyEntity information. | |
| PermissionsNewReportBuilder | Bool | False |
Field containing PermissionsNewReportBuilder information. | |
| PermissionsActivateContract | Bool | False |
Field containing PermissionsActivateContract information. | |
| PermissionsActivateOrder | Bool | False |
Field containing PermissionsActivateOrder information. | |
| PermissionsImportLeads | Bool | False |
Field containing PermissionsImportLeads information. | |
| PermissionsManageLeads | Bool | False |
Field containing PermissionsManageLeads information. | |
| PermissionsTransferAnyLead | Bool | False |
Field containing PermissionsTransferAnyLead information. | |
| PermissionsViewAllData | Bool | False |
Field containing PermissionsViewAllData information. | |
| PermissionsEditPublicDocuments | Bool | False |
Field containing PermissionsEditPublicDocuments information. | |
| PermissionsViewEncryptedData | Bool | False |
Field containing PermissionsViewEncryptedData information. | |
| PermissionsEditBrandTemplates | Bool | False |
Field containing PermissionsEditBrandTemplates information. | |
| PermissionsEditHtmlTemplates | Bool | False |
Field containing PermissionsEditHtmlTemplates information. | |
| PermissionsChatterInternalUser | Bool | False |
Field containing PermissionsChatterInternalUser information. | |
| PermissionsManageEncryptionKeys | Bool | False |
Field containing PermissionsManageEncryptionKeys information. | |
| PermissionsDeleteActivatedContract | Bool | False |
Field containing PermissionsDeleteActivatedContract information. | |
| PermissionsChatterInviteExternalUsers | Bool | False |
Field containing PermissionsChatterInviteExternalUsers information. | |
| PermissionsSendSitRequests | Bool | False |
Field containing PermissionsSendSitRequests information. | |
| PermissionsApiUserOnly | Bool | False |
Field containing PermissionsApiUserOnly information. | |
| PermissionsManageRemoteAccess | Bool | False |
Field containing PermissionsManageRemoteAccess information. | |
| PermissionsCanUseNewDashboardBuilder | Bool | False |
Field containing PermissionsCanUseNewDashboardBuilder information. | |
| PermissionsManageCategories | Bool | False |
Field containing PermissionsManageCategories information. | |
| PermissionsConvertLeads | Bool | False |
Field containing PermissionsConvertLeads information. | |
| PermissionsPasswordNeverExpires | Bool | False |
Field containing PermissionsPasswordNeverExpires information. | |
| PermissionsUseTeamReassignWizards | Bool | False |
Field containing PermissionsUseTeamReassignWizards information. | |
| PermissionsEditActivatedOrders | Bool | False |
Field containing PermissionsEditActivatedOrders information. | |
| PermissionsInstallPackaging | Bool | False |
Field containing PermissionsInstallPackaging information. | |
| PermissionsPublishPackaging | Bool | False |
Field containing PermissionsPublishPackaging information. | |
| PermissionsChatterOwnGroups | Bool | False |
Field containing PermissionsChatterOwnGroups information. | |
| PermissionsEditOppLineItemUnitPrice | Bool | False |
Field containing PermissionsEditOppLineItemUnitPrice information. | |
| PermissionsManageTerritories | Bool | False |
Field containing PermissionsManageTerritories information. | |
| PermissionsCreatePackaging | Bool | False |
Field containing PermissionsCreatePackaging information. | |
| PermissionsBulkApiHardDelete | Bool | False |
Field containing PermissionsBulkApiHardDelete information. | |
| PermissionsSolutionImport | Bool | False |
Field containing PermissionsSolutionImport information. | |
| PermissionsManageCallCenters | Bool | False |
Field containing PermissionsManageCallCenters information. | |
| PermissionsManageSynonyms | Bool | False |
Field containing PermissionsManageSynonyms information. | |
| PermissionsViewContent | Bool | False |
Field containing PermissionsViewContent information. | |
| PermissionsManageEmailClientConfig | Bool | False |
Field containing PermissionsManageEmailClientConfig information. | |
| PermissionsEnableNotifications | Bool | False |
Field containing PermissionsEnableNotifications information. | |
| PermissionsIsSsoEnabled | Bool | False |
Field containing PermissionsIsSsoEnabled information. | |
| PermissionsManageDataIntegrations | Bool | False |
Field containing PermissionsManageDataIntegrations information. | |
| PermissionsDistributeFromPersWksp | Bool | False |
Field containing PermissionsDistributeFromPersWksp information. | |
| PermissionsViewDataCategories | Bool | False |
Field containing PermissionsViewDataCategories information. | |
| PermissionsManageDataCategories | Bool | False |
Field containing PermissionsManageDataCategories information. | |
| PermissionsAuthorApex | Bool | False |
Field containing PermissionsAuthorApex information. | |
| PermissionsManageMobile | Bool | False |
Field containing PermissionsManageMobile information. | |
| PermissionsApiEnabled | Bool | False |
Field containing PermissionsApiEnabled information. | |
| PermissionsManageCustomReportTypes | Bool | False |
Field containing PermissionsManageCustomReportTypes information. | |
| PermissionsEditCaseComments | Bool | False |
Field containing PermissionsEditCaseComments information. | |
| PermissionsTransferAnyCase | Bool | False |
Field containing PermissionsTransferAnyCase information. | |
| PermissionsContentAdministrator | Bool | False |
Field containing PermissionsContentAdministrator information. | |
| PermissionsCreateWorkspaces | Bool | False |
Field containing PermissionsCreateWorkspaces information. | |
| PermissionsManageContentPermissions | Bool | False |
Field containing PermissionsManageContentPermissions information. | |
| PermissionsManageContentProperties | Bool | False |
Field containing PermissionsManageContentProperties information. | |
| PermissionsManageContentTypes | Bool | False |
Field containing PermissionsManageContentTypes information. | |
| PermissionsManageExchangeConfig | Bool | False |
Field containing PermissionsManageExchangeConfig information. | |
| PermissionsManageAnalyticSnapshots | Bool | False |
Field containing PermissionsManageAnalyticSnapshots information. | |
| PermissionsScheduleReports | Bool | False |
Field containing PermissionsScheduleReports information. | |
| PermissionsManageBusinessHourHolidays | Bool | False |
Field containing PermissionsManageBusinessHourHolidays information. | |
| PermissionsManageEntitlements | Bool | False |
Field containing PermissionsManageEntitlements information. | |
| PermissionsManageDynamicDashboards | Bool | False |
Field containing PermissionsManageDynamicDashboards information. | |
| PermissionsCustomSidebarOnAllPages | Bool | False |
Field containing PermissionsCustomSidebarOnAllPages information. | |
| PermissionsManageInteraction | Bool | False |
Field containing PermissionsManageInteraction information. | |
| PermissionsViewMyTeamsDashboards | Bool | False |
Field containing PermissionsViewMyTeamsDashboards information. | |
| PermissionsModerateChatter | Bool | False |
Field containing PermissionsModerateChatter information. | |
| PermissionsResetPasswords | Bool | False |
Field containing PermissionsResetPasswords information. | |
| PermissionsFlowUFLRequired | Bool | False |
Field containing PermissionsFlowUFLRequired information. | |
| PermissionsCanInsertFeedSystemFields | Bool | False |
Field containing PermissionsCanInsertFeedSystemFields information. | |
| PermissionsActivitiesAccess | Bool | False |
Field containing PermissionsActivitiesAccess information. | |
| PermissionsManageKnowledgeImportExport | Bool | False |
Field containing PermissionsManageKnowledgeImportExport information. | |
| PermissionsUseInboxSchedulingOnBehalfOf | Bool | False |
Field containing PermissionsUseInboxSchedulingOnBehalfOf information. | |
| PermissionsEmailTemplateManagement | Bool | False |
Field containing PermissionsEmailTemplateManagement information. | |
| PermissionsEmailAdministration | Bool | False |
Field containing PermissionsEmailAdministration information. | |
| PermissionsDeleteEventMonitoringData | Bool | False |
Field containing PermissionsDeleteEventMonitoringData information. | |
| PermissionsManageChatterMessages | Bool | False |
Field containing PermissionsManageChatterMessages information. | |
| PermissionsAllowEmailIC | Bool | False |
Field containing PermissionsAllowEmailIC information. | |
| PermissionsChatterFileLink | Bool | False |
Field containing PermissionsChatterFileLink information. | |
| PermissionsForceTwoFactor | Bool | False |
Field containing PermissionsForceTwoFactor information. | |
| PermissionsViewEventLogFiles | Bool | False |
Field containing PermissionsViewEventLogFiles information. | |
| PermissionsManageNetworks | Bool | False |
Field containing PermissionsManageNetworks information. | |
| PermissionsManageAuthProviders | Bool | False |
Field containing PermissionsManageAuthProviders information. | |
| PermissionsRunFlow | Bool | False |
Field containing PermissionsRunFlow information. | |
| PermissionsCreateCustomizeDashboards | Bool | False |
Field containing PermissionsCreateCustomizeDashboards information. | |
| PermissionsCreateDashboardFolders | Bool | False |
Field containing PermissionsCreateDashboardFolders information. | |
| PermissionsViewPublicDashboards | Bool | False |
Field containing PermissionsViewPublicDashboards information. | |
| PermissionsManageDashbdsInPubFolders | Bool | False |
Field containing PermissionsManageDashbdsInPubFolders information. | |
| PermissionsCreateCustomizeReports | Bool | False |
Field containing PermissionsCreateCustomizeReports information. | |
| PermissionsCreateReportFolders | Bool | False |
Field containing PermissionsCreateReportFolders information. | |
| PermissionsViewPublicReports | Bool | False |
Field containing PermissionsViewPublicReports information. | |
| PermissionsManageReportsInPubFolders | Bool | False |
Field containing PermissionsManageReportsInPubFolders information. | |
| PermissionsEditMyDashboards | Bool | False |
Field containing PermissionsEditMyDashboards information. | |
| PermissionsEditMyReports | Bool | False |
Field containing PermissionsEditMyReports information. | |
| PermissionsDeleteFieldHistoryArchive | Bool | False |
Field containing PermissionsDeleteFieldHistoryArchive information. | |
| PermissionsViewAllUsers | Bool | False |
Field containing PermissionsViewAllUsers information. | |
| PermissionsAllowUniversalSearch | Bool | False |
Field containing PermissionsAllowUniversalSearch information. | |
| PermissionsConnectOrgToEnvironmentHub | Bool | False |
Field containing PermissionsConnectOrgToEnvironmentHub information. | |
| PermissionsWorkCalibrationUser | Bool | False |
Field containing PermissionsWorkCalibrationUser information. | |
| PermissionsCreateCustomizeFilters | Bool | False |
Field containing PermissionsCreateCustomizeFilters information. | |
| PermissionsWorkDotComUserPerm | Bool | False |
Field containing PermissionsWorkDotComUserPerm information. | |
| PermissionsContentHubUser | Bool | False |
Field containing PermissionsContentHubUser information. | |
| PermissionsGovernNetworks | Bool | False |
Field containing PermissionsGovernNetworks information. | |
| PermissionsSalesConsole | Bool | False |
Field containing PermissionsSalesConsole information. | |
| PermissionsTwoFactorApi | Bool | False |
Field containing PermissionsTwoFactorApi information. | |
| PermissionsDeleteTopics | Bool | False |
Field containing PermissionsDeleteTopics information. | |
| PermissionsEditTopics | Bool | False |
Field containing PermissionsEditTopics information. | |
| PermissionsCreateTopics | Bool | False |
Field containing PermissionsCreateTopics information. | |
| PermissionsAssignTopics | Bool | False |
Field containing PermissionsAssignTopics information. | |
| PermissionsIdentityEnabled | Bool | False |
Field containing PermissionsIdentityEnabled information. | |
| PermissionsIdentityConnect | Bool | False |
Field containing PermissionsIdentityConnect information. | |
| PermissionsAllowViewKnowledge | Bool | False |
Field containing PermissionsAllowViewKnowledge information. | |
| PermissionsContentWorkspaces | Bool | False |
Field containing PermissionsContentWorkspaces information. | |
| PermissionsManageSearchPromotionRules | Bool | False |
Field containing PermissionsManageSearchPromotionRules information. | |
| PermissionsCustomMobileAppsAccess | Bool | False |
Field containing PermissionsCustomMobileAppsAccess information. | |
| PermissionsViewHelpLink | Bool | False |
Field containing PermissionsViewHelpLink information. | |
| PermissionsManageProfilesPermissionsets | Bool | False |
Field containing PermissionsManageProfilesPermissionsets information. | |
| PermissionsAssignPermissionSets | Bool | False |
Field containing PermissionsAssignPermissionSets information. | |
| PermissionsManageRoles | Bool | False |
Field containing PermissionsManageRoles information. | |
| PermissionsManageIpAddresses | Bool | False |
Field containing PermissionsManageIpAddresses information. | |
| PermissionsManageSharing | Bool | False |
Field containing PermissionsManageSharing information. | |
| PermissionsManageInternalUsers | Bool | False |
Field containing PermissionsManageInternalUsers information. | |
| PermissionsManagePasswordPolicies | Bool | False |
Field containing PermissionsManagePasswordPolicies information. | |
| PermissionsManageLoginAccessPolicies | Bool | False |
Field containing PermissionsManageLoginAccessPolicies information. | |
| PermissionsViewPlatformEvents | Bool | False |
Field containing PermissionsViewPlatformEvents information. | |
| PermissionsManageCustomPermissions | Bool | False |
Field containing PermissionsManageCustomPermissions information. | |
| PermissionsCanVerifyComment | Bool | False |
Field containing PermissionsCanVerifyComment information. | |
| PermissionsManageUnlistedGroups | Bool | False |
Field containing PermissionsManageUnlistedGroups information. | |
| PermissionsStdAutomaticActivityCapture | Bool | False |
Field containing PermissionsStdAutomaticActivityCapture information. | |
| PermissionsFreezeUsers | Bool | False |
Field containing PermissionsFreezeUsers information. | |
| PermissionsInsightsAppDashboardEditor | Bool | False |
Field containing PermissionsInsightsAppDashboardEditor information. | |
| PermissionsManageTwoFactor | Bool | False |
Field containing PermissionsManageTwoFactor information. | |
| PermissionsInsightsAppUser | Bool | False |
Field containing PermissionsInsightsAppUser information. | |
| PermissionsInsightsAppAdmin | Bool | False |
Field containing PermissionsInsightsAppAdmin information. | |
| PermissionsInsightsAppEltEditor | Bool | False |
Field containing PermissionsInsightsAppEltEditor information. | |
| PermissionsInsightsAppUploadUser | Bool | False |
Field containing PermissionsInsightsAppUploadUser information. | |
| PermissionsInsightsCreateApplication | Bool | False |
Field containing PermissionsInsightsCreateApplication information. | |
| PermissionsLightningExperienceUser | Bool | False |
Field containing PermissionsLightningExperienceUser information. | |
| PermissionsViewDataLeakageEvents | Bool | False |
Field containing PermissionsViewDataLeakageEvents information. | |
| PermissionsConfigCustomRecs | Bool | False |
Field containing PermissionsConfigCustomRecs information. | |
| PermissionsSubmitMacrosAllowed | Bool | False |
Field containing PermissionsSubmitMacrosAllowed information. | |
| PermissionsBulkMacrosAllowed | Bool | False |
Field containing PermissionsBulkMacrosAllowed information. | |
| PermissionsShareInternalArticles | Bool | False |
Field containing PermissionsShareInternalArticles information. | |
| PermissionsManageSessionPermissionSets | Bool | False |
Field containing PermissionsManageSessionPermissionSets information. | |
| PermissionsManageTemplatedApp | Bool | False |
Field containing PermissionsManageTemplatedApp information. | |
| PermissionsUseTemplatedApp | Bool | False |
Field containing PermissionsUseTemplatedApp information. | |
| PermissionsSendAnnouncementEmails | Bool | False |
Field containing PermissionsSendAnnouncementEmails information. | |
| PermissionsChatterEditOwnPost | Bool | False |
Field containing PermissionsChatterEditOwnPost information. | |
| PermissionsChatterEditOwnRecordPost | Bool | False |
Field containing PermissionsChatterEditOwnRecordPost information. | |
| PermissionsWaveTabularDownload | Bool | False |
Field containing PermissionsWaveTabularDownload information. | |
| PermissionsWaveCommunityUser | Bool | False |
Field containing PermissionsWaveCommunityUser information. | |
| PermissionsAutomaticActivityCapture | Bool | False |
Field containing PermissionsAutomaticActivityCapture information. | |
| PermissionsImportCustomObjects | Bool | False |
Field containing PermissionsImportCustomObjects information. | |
| PermissionsSalesforceIQInbox | Bool | False |
Field containing PermissionsSalesforceIQInbox information. | |
| PermissionsDelegatedTwoFactor | Bool | False |
Field containing PermissionsDelegatedTwoFactor information. | |
| PermissionsChatterComposeUiCodesnippet | Bool | False |
Field containing PermissionsChatterComposeUiCodesnippet information. | |
| PermissionsSelectFilesFromSalesforce | Bool | False |
Field containing PermissionsSelectFilesFromSalesforce information. | |
| PermissionsModerateNetworkUsers | Bool | False |
Field containing PermissionsModerateNetworkUsers information. | |
| PermissionsMergeTopics | Bool | False |
Field containing PermissionsMergeTopics information. | |
| PermissionsSubscribeToLightningReports | Bool | False |
Field containing PermissionsSubscribeToLightningReports information. | |
| PermissionsManagePvtRptsAndDashbds | Bool | False |
Field containing PermissionsManagePvtRptsAndDashbds information. | |
| PermissionsAllowLightningLogin | Bool | False |
Field containing PermissionsAllowLightningLogin information. | |
| PermissionsLeadScoreUser | Bool | False |
Field containing PermissionsLeadScoreUser information. | |
| PermissionsCampaignInfluence2 | Bool | False |
Field containing PermissionsCampaignInfluence2 information. | |
| PermissionsViewDataAssessment | Bool | False |
Field containing PermissionsViewDataAssessment information. | |
| PermissionsRemoveDirectMessageMembers | Bool | False |
Field containing PermissionsRemoveDirectMessageMembers information. | |
| PermissionsCanApproveFeedPost | Bool | False |
Field containing PermissionsCanApproveFeedPost information. | |
| PermissionsAddDirectMessageMembers | Bool | False |
Field containing PermissionsAddDirectMessageMembers information. | |
| PermissionsAllowViewEditConvertedLeads | Bool | False |
Field containing PermissionsAllowViewEditConvertedLeads information. | |
| PermissionsShowCompanyNameAsUserBadge | Bool | False |
Field containing PermissionsShowCompanyNameAsUserBadge information. | |
| PermissionsAccessCMC | Bool | False |
Field containing PermissionsAccessCMC information. | |
| PermissionsViewHealthCheck | Bool | False |
Field containing PermissionsViewHealthCheck information. | |
| PermissionsManageHealthCheck | Bool | False |
Field containing PermissionsManageHealthCheck information. | |
| PermissionsPackaging2 | Bool | False |
Field containing PermissionsPackaging2 information. | |
| PermissionsManageCertificates | Bool | False |
Field containing PermissionsManageCertificates information. | |
| PermissionsCreateReportInLightning | Bool | False |
Field containing PermissionsCreateReportInLightning information. | |
| PermissionsPreventClassicExperience | Bool | False |
Field containing PermissionsPreventClassicExperience information. | |
| PermissionsHideReadByList | Bool | False |
Field containing PermissionsHideReadByList information. | |
| PermissionsDeleteFieldHistory | Bool | False |
Field containing PermissionsDeleteFieldHistory information. | |
| PermissionsListEmailSend | Bool | False |
Field containing PermissionsListEmailSend information. | |
| PermissionsFeedPinning | Bool | False |
Field containing PermissionsFeedPinning information. | |
| PermissionsChangeDashboardColors | Bool | False |
Field containing PermissionsChangeDashboardColors information. | |
| PermissionsManageRecommendationStrategies | Bool | False |
Field containing PermissionsManageRecommendationStrategies information. | |
| PermissionsManagePropositions | Bool | False |
Field containing PermissionsManagePropositions information. | |
| PermissionsCloseConversations | Bool | False |
Field containing PermissionsCloseConversations information. | |
| PermissionsSubscribeReportRolesGrps | Bool | False |
Field containing PermissionsSubscribeReportRolesGrps information. | |
| PermissionsSubscribeDashboardRolesGrps | Bool | False |
Field containing PermissionsSubscribeDashboardRolesGrps information. | |
| PermissionsUseWebLink | Bool | False |
Field containing PermissionsUseWebLink information. | |
| PermissionsHasUnlimitedNBAExecutions | Bool | False |
Field containing PermissionsHasUnlimitedNBAExecutions information. | |
| PermissionsViewOnlyEmbeddedAppUser | Bool | False |
Field containing PermissionsViewOnlyEmbeddedAppUser information. | |
| PermissionsViewAllActivities | Bool | False |
Field containing PermissionsViewAllActivities information. | |
| PermissionsSubscribeReportToOtherUsers | Bool | False |
Field containing PermissionsSubscribeReportToOtherUsers information. | |
| PermissionsLightningConsoleAllowedForUser | Bool | False |
Field containing PermissionsLightningConsoleAllowedForUser information. | |
| PermissionsSubscribeReportsRunAsUser | Bool | False |
Field containing PermissionsSubscribeReportsRunAsUser information. | |
| PermissionsSubscribeToLightningDashboards | Bool | False |
Field containing PermissionsSubscribeToLightningDashboards information. | |
| PermissionsSubscribeDashboardToOtherUsers | Bool | False |
Field containing PermissionsSubscribeDashboardToOtherUsers information. | |
| PermissionsPardotUser | Bool | False |
Field containing PermissionsPardotUser information. | |
| PermissionsCreateLtngTempInPub | Bool | False |
Field containing PermissionsCreateLtngTempInPub information. | |
| PermissionsTransactionalEmailSend | Bool | False |
Field containing PermissionsTransactionalEmailSend information. | |
| PermissionsViewPrivateStaticResources | Bool | False |
Field containing PermissionsViewPrivateStaticResources information. | |
| PermissionsCreateLtngTempFolder | Bool | False |
Field containing PermissionsCreateLtngTempFolder information. | |
| PermissionsApexRestServices | Bool | False |
Field containing PermissionsApexRestServices information. | |
| PermissionsEnableCommunityAppLauncher | Bool | False |
Field containing PermissionsEnableCommunityAppLauncher information. | |
| PermissionsGiveRecognitionBadge | Bool | False |
Field containing PermissionsGiveRecognitionBadge information. | |
| PermissionsSalesforceIQInternal | Bool | False |
Field containing PermissionsSalesforceIQInternal information. | |
| PermissionsUseMySearch | Bool | False |
Field containing PermissionsUseMySearch information. | |
| PermissionsLtngPromoReserved01UserPerm | Bool | False |
Field containing PermissionsLtngPromoReserved01UserPerm information. | |
| PermissionsManageSubscriptions | Bool | False |
Field containing PermissionsManageSubscriptions information. | |
| PermissionsWaveManagePrivateAssetsUser | Bool | False |
Field containing PermissionsWaveManagePrivateAssetsUser information. | |
| PermissionsCanEditDataPrepRecipe | Bool | False |
Field containing PermissionsCanEditDataPrepRecipe information. | |
| PermissionsAddAnalyticsRemoteConnections | Bool | False |
Field containing PermissionsAddAnalyticsRemoteConnections information. | |
| PermissionsManageSurveys | Bool | False |
Field containing PermissionsManageSurveys information. | |
| PermissionsUseAssistantDialog | Bool | False |
Field containing PermissionsUseAssistantDialog information. | |
| PermissionsUseQuerySuggestions | Bool | False |
Field containing PermissionsUseQuerySuggestions information. | |
| PermissionsRecordVisibilityAPI | Bool | False |
Field containing PermissionsRecordVisibilityAPI information. | |
| PermissionsViewRoles | Bool | False |
Field containing PermissionsViewRoles information. | |
| PermissionsCanManageMaps | Bool | False |
Field containing PermissionsCanManageMaps information. | |
| PermissionsLMOutboundMessagingUserPerm | Bool | False |
Field containing PermissionsLMOutboundMessagingUserPerm information. | |
| PermissionsModifyDataClassification | Bool | False |
Field containing PermissionsModifyDataClassification information. | |
| PermissionsPrivacyDataAccess | Bool | False |
Field containing PermissionsPrivacyDataAccess information. | |
| PermissionsQueryAllFiles | Bool | False |
Field containing PermissionsQueryAllFiles information. | |
| PermissionsModifyMetadata | Bool | False |
Field containing PermissionsModifyMetadata information. | |
| PermissionsManageCMS | Bool | False |
Field containing PermissionsManageCMS information. | |
| PermissionsSandboxTestingInCommunityApp | Bool | False |
Field containing PermissionsSandboxTestingInCommunityApp information. | |
| PermissionsCanEditPrompts | Bool | False |
Field containing PermissionsCanEditPrompts information. | |
| PermissionsViewUserPII | Bool | False |
Field containing PermissionsViewUserPII information. | |
| PermissionsManageHubConnections | Bool | False |
Field containing PermissionsManageHubConnections information. | |
| PermissionsB2BMarketingAnalyticsUser | Bool | False |
Field containing PermissionsB2BMarketingAnalyticsUser information. | |
| PermissionsTraceXdsQueries | Bool | False |
Field containing PermissionsTraceXdsQueries information. | |
| PermissionsViewSecurityCommandCenter | Bool | False |
Field containing PermissionsViewSecurityCommandCenter information. | |
| PermissionsManageSecurityCommandCenter | Bool | False |
Field containing PermissionsManageSecurityCommandCenter information. | |
| PermissionsViewAllCustomSettings | Bool | False |
Field containing PermissionsViewAllCustomSettings information. | |
| PermissionsViewAllForeignKeyNames | Bool | False |
Field containing PermissionsViewAllForeignKeyNames information. | |
| PermissionsAddWaveNotificationRecipients | Bool | False |
Field containing PermissionsAddWaveNotificationRecipients information. | |
| PermissionsHeadlessCMSAccess | Bool | False |
Field containing PermissionsHeadlessCMSAccess information. | |
| PermissionsUseOrderManagementAPIs | Bool | False |
Field containing PermissionsUseOrderManagementAPIs information. | |
| PermissionsEditUnmanagedOrderSummaries | Bool | False |
Field containing PermissionsEditUnmanagedOrderSummaries information. | |
| PermissionsLMEndMessagingSessionUserPerm | Bool | False |
Field containing PermissionsLMEndMessagingSessionUserPerm information. | |
| PermissionsConsentApiUpdate | Bool | False |
Date associated with PermissionsConsentApiUp. | |
| PermissionsPaymentsAPIUser | Bool | False |
Field containing PermissionsPaymentsAPIUser information. | |
| PermissionsAccessContentBuilder | Bool | False |
Field containing PermissionsAccessContentBuilder information. | |
| PermissionsAccountSwitcherUser | Bool | False |
Field containing PermissionsAccountSwitcherUser information. | |
| PermissionsViewAnomalyEvents | Bool | False |
Field containing PermissionsViewAnomalyEvents information. | |
| PermissionsManageC360AConnections | Bool | False |
Field containing PermissionsManageC360AConnections information. | |
| PermissionsManageReleaseUpdates | Bool | False |
Field containing PermissionsManageReleaseUpdates information. | |
| PermissionsViewAllProfiles | Bool | False |
Field containing PermissionsViewAllProfiles information. | |
| PermissionsSkipIdentityConfirmation | Bool | False |
Field containing PermissionsSkipIdentityConfirmation information. | |
| PermissionsLearningManager | Bool | False |
Field containing PermissionsLearningManager information. | |
| PermissionsSendCustomNotifications | Bool | False |
Field containing PermissionsSendCustomNotifications information. | |
| PermissionsPackaging2Delete | Bool | False |
Field containing PermissionsPackaging2Delete information. | |
| PermissionsUseOmnichannelInventoryAPIs | Bool | False |
Field containing PermissionsUseOmnichannelInventoryAPIs information. | |
| PermissionsViewRestrictionAndScopingRules | Bool | False |
Field containing PermissionsViewRestrictionAndScopingRules information. | |
| PermissionsFSCComprehensiveUserAccess | Bool | False |
Field containing PermissionsFSCComprehensiveUserAccess information. | |
| PermissionsMarketingAdmin | Bool | False |
Field containing PermissionsMarketingAdmin information. | |
| PermissionsBotManageBots | Bool | False |
Field containing PermissionsBotManageBots information. | |
| PermissionsBotManageBotsTrainingData | Bool | False |
Field containing PermissionsBotManageBotsTrainingData information. | |
| PermissionsEditDeliveryInformation | Bool | False |
Field containing PermissionsEditDeliveryInformation information. | |
| PermissionsOmnichannelInventorySync | Bool | False |
Field containing PermissionsOmnichannelInventorySync information. | |
| PermissionsManageLearningReporting | Bool | False |
Field containing PermissionsManageLearningReporting information. | |
| PermissionsIsotopeCToCUser | Bool | False |
Field containing PermissionsIsotopeCToCUser information. | |
| PermissionsManagePreferenceCenter | Bool | False |
Field containing PermissionsManagePreferenceCenter information. | |
| PermissionsCanAccessCE | Bool | False |
Field containing PermissionsCanAccessCE information. | |
| PermissionsIsotopeAccess | Bool | False |
Field containing PermissionsIsotopeAccess information. | |
| PermissionsIsotopeLEX | Bool | False |
Field containing PermissionsIsotopeLEX information. | |
| PermissionsQuipMetricsAccess | Bool | False |
Field containing PermissionsQuipMetricsAccess information. | |
| PermissionsQuipUserEngagementMetrics | Bool | False |
Field containing PermissionsQuipUserEngagementMetrics information. | |
| PermissionsTransactionSecurityExempt | Bool | False |
Field containing PermissionsTransactionSecurityExempt information. | |
| PermissionsManageExternalConnections | Bool | False |
Field containing PermissionsManageExternalConnections information. | |
| PermissionsUseSubscriptionEmails | Bool | False |
Field containing PermissionsUseSubscriptionEmails information. | |
| PermissionsManageEmailContent | Bool | False |
Field containing PermissionsManageEmailContent information. | |
| PermissionsAutomateEmailContent | Bool | False |
Field containing PermissionsAutomateEmailContent information. | |
| PermissionsAIViewInsightObjects | Bool | False |
Field containing PermissionsAIViewInsightObjects information. | |
| PermissionsAICreateInsightObjects | Bool | False |
Field containing PermissionsAICreateInsightObjects information. | |
| PermissionsViewMLModels | Bool | False |
Field containing PermissionsViewMLModels information. | |
| PermissionsLifecycleManagementAPIUser | Bool | False |
Field containing PermissionsLifecycleManagementAPIUser information. | |
| PermissionsLeadScoreResultPublisher | Bool | False |
Field containing PermissionsLeadScoreResultPublisher information. | |
| PermissionsManageGlobalPrivacyCenterVO | Bool | False |
Field containing PermissionsManageGlobalPrivacyCenterVO information. | |
| PermissionsNativeWebviewScrolling | Bool | False |
Field containing PermissionsNativeWebviewScrolling information. | |
| PermissionsViewDeveloperName | Bool | False |
Field containing PermissionsViewDeveloperName information. | |
| PermissionsBypassMFAForUiLogins | Bool | False |
Field containing PermissionsBypassMFAForUiLogins information. | |
| PermissionsClientSecretRotation | Bool | False |
Field containing PermissionsClientSecretRotation information. | |
| PermissionsUseOrderSummaryCreateAPI | Bool | False |
Field containing PermissionsUseOrderSummaryCreateAPI information. | |
| PermissionsAccessToServiceProcess | Bool | False |
Field containing PermissionsAccessToServiceProcess information. | |
| PermissionsManageOrchInstsAndWorkItems | Bool | False |
Field containing PermissionsManageOrchInstsAndWorkItems information. | |
| PermissionsCMSECEAuthoringAccess | Bool | False |
Field containing PermissionsCMSECEAuthoringAccess information. | |
| PermissionsManageDataspaceScope | Bool | False |
Field containing PermissionsManageDataspaceScope information. | |
| PermissionsConfigureDataspaceScope | Bool | False |
Field containing PermissionsConfigureDataspaceScope information. | |
| PermissionsManageCampaigns | Bool | False |
Field containing PermissionsManageCampaigns information. | |
| PermissionsViewClientSecret | Bool | False |
Field containing PermissionsViewClientSecret information. | |
| PermissionsCdcReportingCreateReports | Bool | False |
Field containing PermissionsCdcReportingCreateReports information. | |
| PermissionsCdcReportingViewReports | Bool | False |
Field containing PermissionsCdcReportingViewReports information. | |
| PermissionsCdcReportingManageFolders | Bool | False |
Field containing PermissionsCdcReportingManageFolders information. | |
| PermissionsExternalClientAppDeveloper | Bool | False |
Field containing PermissionsExternalClientAppDeveloper information. | |
| PermissionsExternalClientAppAdmin | Bool | False |
Field containing PermissionsExternalClientAppAdmin information. | |
| PermissionsExternalClientAppViewer | Bool | False |
Field containing PermissionsExternalClientAppViewer information. | |
| PermissionsOmnichannelInventoryBasic | Bool | False |
Field containing PermissionsOmnichannelInventoryBasic information. | |
| PermissionsDeleteCrMemoAndInvoice | Bool | False |
Field containing PermissionsDeleteCrMemoAndInvoice information. | |
| PermissionsEmbeddedMessagingAgent | Bool | False |
Field containing PermissionsEmbeddedMessagingAgent information. | |
| PermissionsViewNonSetupFlow | Bool | False |
Field containing PermissionsViewNonSetupFlow information. | |
| PermissionsCreateEditNonSetupFlow | Bool | False |
Field containing PermissionsCreateEditNonSetupFlow information. | |
| PermissionsDeleteNonSetupFlow | Bool | False |
Field containing PermissionsDeleteNonSetupFlow information. | |
| PermissionsActivateDeactivateNonSetupFlow | Bool | False |
Field containing PermissionsActivateDeactivateNonSetupFlow information. | |
| PermissionsAddDecisionElmntNonSetupFlow | Bool | False |
Field containing PermissionsAddDecisionElmntNonSetupFlow information. | |
| PermissionsAddCreaRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCreaRecElmntToNonSetupFlow information. | |
| PermissionsAddWaitToNonSetupFlow | Bool | False |
Field containing PermissionsAddWaitToNonSetupFlow information. | |
| PermissionsManageNamedCredentials | Bool | False |
Field containing PermissionsManageNamedCredentials information. | |
| PermissionsAddUpdtRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddUpdtRecElmntToNonSetupFlow information. | |
| PermissionsEditManagedOrderSummaries | Bool | False |
Field containing PermissionsEditManagedOrderSummaries information. | |
| PermissionsCanInitiateMessagingSessions | Bool | False |
Field containing PermissionsCanInitiateMessagingSessions information. | |
| PermissionsAuthorizePayments | Bool | False |
Field containing PermissionsAuthorizePayments information. | |
| PermissionsCaptureAndReversePayments | Bool | False |
Field containing PermissionsCaptureAndReversePayments information. | |
| PermissionsCombAuthAndCapPayments | Bool | False |
Field containing PermissionsCombAuthAndCapPayments information. | |
| PermissionsRefundPayments | Bool | False |
Field containing PermissionsRefundPayments information. | |
| PermissionsViewPayments | Bool | False |
Field containing PermissionsViewPayments information. | |
| PermissionsMakePayments | Bool | False |
Field containing PermissionsMakePayments information. | |
| PermissionsManageDataMaskPolicies | Bool | False |
Field containing PermissionsManageDataMaskPolicies information. | |
| PermissionsCanUpdateEmailMessage | Bool | False |
Field containing PermissionsCanUpdateEmailMessage information. | |
| PermissionsDownloadPackageVersionZips | Bool | False |
Field containing PermissionsDownloadPackageVersionZips information. | |
| PermissionsViewContentTaxonomy | Bool | False |
Field containing PermissionsViewContentTaxonomy information. | |
| PermissionsManageContentTaxonomy | Bool | False |
Field containing PermissionsManageContentTaxonomy information. | |
| PermissionsReassignOrchestrationWorkItems | Bool | False |
Field containing PermissionsReassignOrchestrationWorkItems information. | |
| PermissionsManageOrchestrationRuns | Bool | False |
Field containing PermissionsManageOrchestrationRuns information. | |
| PermissionsDigitalLendingUser | Bool | False |
Field containing PermissionsDigitalLendingUser information. | |
| PermissionsSendEmail | Bool | False |
Field containing PermissionsSendEmail information. | |
| PermissionsPreviewTestSendEmail | Bool | False |
Field containing PermissionsPreviewTestSendEmail information. | |
| PermissionsManageEmailMessagingSetup | Bool | False |
Field containing PermissionsManageEmailMessagingSetup information. | |
| PermissionsViewEmailMessagingSetup | Bool | False |
Field containing PermissionsViewEmailMessagingSetup information. | |
| PermissionsManageCertificatesExpiration | Bool | False |
Field containing PermissionsManageCertificatesExpiration information. | |
| PermissionsEnableIPFSUpload | Bool | False |
Field containing PermissionsEnableIPFSUpload information. | |
| PermissionsEnableBCTransactionPolling | Bool | False |
Field containing PermissionsEnableBCTransactionPolling information. | |
| PermissionsLobbyManagementUserAccess | Bool | False |
Field containing PermissionsLobbyManagementUserAccess information. | |
| PermissionsUMAWebTrackingSetup | Bool | False |
Field containing PermissionsUMAWebTrackingSetup information. | |
| PermissionsAddGetRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddGetRecElmntToNonSetupFlow information. | |
| PermissionsAddLoopElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddLoopElmntToNonSetupFlow information. | |
| PermissionsAddAsgntElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddAsgntElmntToNonSetupFlow information. | |
| PermissionsAddSubflowElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddSubflowElmntToNonSetupFlow information. | |
| PermissionsMonitorLoginHistory | Bool | False |
Field containing PermissionsMonitorLoginHistory information. | |
| PermissionsAddCollFltrElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCollFltrElmntToNonSetupFlow information. | |
| PermissionsAddCollSrtElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCollSrtElmntToNonSetupFlow information. | |
| PermissionsAddDelRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddDelRecElmntToNonSetupFlow information. | |
| PermissionsOpportunityInfluence | Bool | False |
Field containing PermissionsOpportunityInfluence information. | |
| PermissionsConsentBannerSettingsSetup | Bool | False |
Field containing PermissionsConsentBannerSettingsSetup information. | |
| PermissionsEnhancedSalesMobileExp | Bool | False |
Field containing PermissionsEnhancedSalesMobileExp information. | |
| PermissionsCanViewDataPrepRecipe | Bool | False |
Field containing PermissionsCanViewDataPrepRecipe information. | |
| PermissionsSimpleCsvDataImportUser | Bool | False |
Field containing PermissionsSimpleCsvDataImportUser information. | |
| PermissionsAdvancedCsvDataImportUser | Bool | False |
Field containing PermissionsAdvancedCsvDataImportUser information. | |
| PermissionsUmaQueryCMSEmailContent | Bool | False |
Field containing PermissionsUmaQueryCMSEmailContent information. | |
| PermissionsAccessToComplaintMgmt | Bool | False |
Field containing PermissionsAccessToComplaintMgmt information. | |
| PermissionsAccessToDisputeManagement | Bool | False |
Field containing PermissionsAccessToDisputeManagement information. | |
| PermissionsUMAStandaloneUserPerm | Bool | False |
Field containing PermissionsUMAStandaloneUserPerm information. | |
| PermissionsPersonalizedFinanceUserAccess | Bool | False |
Field containing PermissionsPersonalizedFinanceUserAccess information. | |
| PermissionsUmaEditConsentSettings | Bool | False |
Field containing PermissionsUmaEditConsentSettings information. | |
| PermissionsCustomAppsOnFSMobile | Bool | False |
Field containing PermissionsCustomAppsOnFSMobile information. | |
| PermissionsStageManagementDesignUser | Bool | False |
Field containing PermissionsStageManagementDesignUser information. | |
| PermissionsSegmentIntelligenceUser | Bool | False |
Field containing PermissionsSegmentIntelligenceUser information. | |
| PermissionsFSCArcGraphCommunityUser | Bool | False |
Field containing PermissionsFSCArcGraphCommunityUser information. | |
| PermissionsManageCdpMlModels | Bool | False |
Field containing PermissionsManageCdpMlModels information. | |
| PermissionsDigitalLendingAdminUser | Bool | False |
Field containing PermissionsDigitalLendingAdminUser information. | |
| PermissionsActivateSystemModeFlows | Bool | False |
Field containing PermissionsActivateSystemModeFlows information. | |
| PermissionsViewAllNonSetupFlows | Bool | False |
Field containing PermissionsViewAllNonSetupFlows information. | |
| PermissionsMcScoringRulesConfig | Bool | False |
Field containing PermissionsMcScoringRulesConfig information. | |
| PermissionsPersonalizationPlatform | Bool | False |
Field containing PermissionsPersonalizationPlatform information. | |
| PermissionsLeadInspectorUser | Bool | False |
Field containing PermissionsLeadInspectorUser information. | |
| PermissionsContactInspectorUser | Bool | False |
Field containing PermissionsContactInspectorUser information. | |
| PermissionsManageIntegrationConnections | Bool | False |
Field containing PermissionsManageIntegrationConnections information. | |
| PermissionsTableauCreateDashboard | Bool | False |
Field containing PermissionsTableauCreateDashboard information. | |
| PermissionsTableauViewDashboard | Bool | False |
Field containing PermissionsTableauViewDashboard information. | |
| PermissionsEinsteinCopilotUser | Bool | False |
Field containing PermissionsEinsteinCopilotUser information. | |
| PermissionsEinsteinCopilotBuilder | Bool | False |
Field containing PermissionsEinsteinCopilotBuilder information. | |
| PermissionsUseCreateOrderSummary | Bool | False |
Field containing PermissionsUseCreateOrderSummary information. | |
| PermissionsUseCreateCreditMemo | Bool | False |
Field containing PermissionsUseCreateCreditMemo information. | |
| PermissionsUseEnsureFunds | Bool | False |
Field containing PermissionsUseEnsureFunds information. | |
| PermissionsUseOrderItemSummaryCancel | Bool | False |
Field containing PermissionsUseOrderItemSummaryCancel information. | |
| PermissionsUseOrderItemSummaryReturn | Bool | False |
Field containing PermissionsUseOrderItemSummaryReturn information. | |
| PermissionsManageFilesAndAttachments | Bool | False |
Field containing PermissionsManageFilesAndAttachments information. | |
| PermissionsAddTrfmElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddTrfmElmntToNonSetupFlow information. | |
| PermissionsMobileMessagingAgent | Bool | False |
Field containing PermissionsMobileMessagingAgent information. | |
| PermissionsTableauCreateVisualization | Bool | False |
Field containing PermissionsTableauCreateVisualization information. | |
| PermissionsTableauViewVisualization | Bool | False |
Field containing PermissionsTableauViewVisualization information. | |
| PermissionsManageCustomDomains | Bool | False |
Field containing PermissionsManageCustomDomains information. | |
| PermissionsEngagementConfigUser | Bool | False |
Field containing PermissionsEngagementConfigUser information. | |
| PermissionsPersonalizationIntelUser | Bool | False |
Field containing PermissionsPersonalizationIntelUser information. | |
| PermissionsAttributionModelUser | Bool | False |
Field containing PermissionsAttributionModelUser information. | |
| PermissionsTableauCreateWorkspace | Bool | False |
Field containing PermissionsTableauCreateWorkspace information. | |
| PermissionsTableauViewWorkspace | Bool | False |
Field containing PermissionsTableauViewWorkspace information. | |
| PermissionsManageBriefs | Bool | False |
Field containing PermissionsManageBriefs information. | |
| PermissionsSalesInsightsUser | Bool | False |
Field containing PermissionsSalesInsightsUser information. | |
| PermissionsCanSendInitialSMSToIndividual | Bool | False |
Field containing PermissionsCanSendInitialSMSToIndividual information. | |
| PermissionsAccessDisputePrompts | Bool | False |
Field containing PermissionsAccessDisputePrompts information. | |
| PermissionsQueryNonVetoedFiles | Bool | False |
Field containing PermissionsQueryNonVetoedFiles information. | |
| PermissionsMetadataStudioUser | Bool | False |
Field containing PermissionsMetadataStudioUser information. | |
| PermissionsAddPathExprmElmntNonSetupFlow | Bool | False |
Field containing PermissionsAddPathExprmElmntNonSetupFlow information. | |
| PermissionsDigitalLendingWorkbench | Bool | False |
Field containing PermissionsDigitalLendingWorkbench information. | |
| PermissionsDigitalLendingEditReadOnly | Bool | False |
Field containing PermissionsDigitalLendingEditReadOnly information. | |
| PermissionsUseCanCancelInProgressChange | Bool | False |
Field containing PermissionsUseCanCancelInProgressChange information. | |
| PermissionsPrmExtIntPrtnrAdminUser | Bool | False |
Field containing PermissionsPrmExtIntPrtnrAdminUser information. | |
| PermissionsEinsteinAgentPlatformBuilder | Bool | False |
Field containing PermissionsEinsteinAgentPlatformBuilder information. | |
| PermissionsUseServicePartReturn | Bool | False |
Field containing PermissionsUseServicePartReturn information. | |
| PermissionsViewUMACalendar | Bool | False |
Field containing PermissionsViewUMACalendar information. | |
| PermissionsHeadlessPublishNudges | Bool | False |
Field containing PermissionsHeadlessPublishNudges information. | |
| PermissionsApprovalAdmin | Bool | False |
Field containing PermissionsApprovalAdmin information. | |
| PermissionsApprovalDesigner | Bool | False |
Field containing PermissionsApprovalDesigner information. | |
| PermissionsAccessServiceEinstein | Bool | False |
Field containing PermissionsAccessServiceEinstein information. | |
| PermissionsViewRecommendations | Bool | False |
Field containing PermissionsViewRecommendations information. | |
| PermissionsPrismPlaygroundUser | Bool | False |
Field containing PermissionsPrismPlaygroundUser information. | |
| PermissionsModifyAllPolicyCenterPolicies | Bool | False |
Field containing PermissionsModifyAllPolicyCenterPolicies information. | |
| PermissionsViewAllPolicyCenterPolicies | Bool | False |
Field containing PermissionsViewAllPolicyCenterPolicies information. | |
| PermissionsAccessSfDrive | Bool | False |
Field containing PermissionsAccessSfDrive information. | |
| PermissionsAppFrameworkManageApp | Bool | False |
Field containing PermissionsAppFrameworkManageApp information. | |
| PermissionsAppFrameworkViewApp | Bool | False |
Field containing PermissionsAppFrameworkViewApp information. | |
| PermissionsMCGSetupUserPerm | Bool | False |
Field containing PermissionsMCGSetupUserPerm information. | |
| PermissionsAgentforceServiceAgentUser | Bool | False |
Field containing PermissionsAgentforceServiceAgentUser information. | |
| PermissionsManageAgentforceServiceAgent | Bool | False |
Field containing PermissionsManageAgentforceServiceAgent information. | |
| PermissionsCanTranslateScrt2Conversation | Bool | False |
Field containing PermissionsCanTranslateScrt2Conversation information. | |
| PermissionsSlackFromTableau | Bool | False |
Field containing PermissionsSlackFromTableau information. | |
| PermissionsTableauShareSnapshot | Bool | False |
Field containing PermissionsTableauShareSnapshot information. | |
| PermissionsAccessBankingServiceAgent | Bool | False |
Field containing PermissionsAccessBankingServiceAgent information. | |
| PermissionsPrismBackofficeUser | Bool | False |
Field containing PermissionsPrismBackofficeUser information. | |
| PermissionsPersonalizationDecisioningUser | Bool | False |
Field containing PermissionsPersonalizationDecisioningUser information. | |
| PermissionsAccessBankingRelationshipAssistance | Bool | False |
Field containing PermissionsAccessBankingRelationshipAssistance information. | |
| PermissionsCanMarketingUserDebugFlow | Bool | False |
Field containing PermissionsCanMarketingUserDebugFlow information. | |
| PermissionsCanDoActAsUser | Bool | False |
Field containing PermissionsCanDoActAsUser information. | |
| PermissionsViewAllFieldsGlobal | Bool | False |
Field containing PermissionsViewAllFieldsGlobal information. | |
| PermissionsManageHerokuAppLink | Bool | False |
Field containing PermissionsManageHerokuAppLink information. | |
| PermissionsUserHasSendToListFilterAccess | Bool | False |
Field containing PermissionsUserHasSendToListFilterAccess information. | |
| PermissionsMngBenVerfForAssistiveAgnt | Bool | False |
Field containing PermissionsMngBenVerfForAssistiveAgnt information. | |
| PermissionsCreateModDGTrigNonSetupFlow | Bool | False |
Field containing PermissionsCreateModDGTrigNonSetupFlow information. | |
| PermissionsAccessPolicyAgent | Bool | False |
Field containing PermissionsAccessPolicyAgent information. | |
| PermissionsMCPMetadataApi | Bool | False |
Field containing PermissionsMCPMetadataApi information. | |
| PermissionsAppFrameworkManageTemplate | Bool | False |
Field containing PermissionsAppFrameworkManageTemplate information. | |
| PermissionsDigitalAgentUser | Bool | False |
Field containing PermissionsDigitalAgentUser information. | |
| PermissionsAccessWealthAdvisorAgent | Bool | False |
Field containing PermissionsAccessWealthAdvisorAgent information. | |
| PermissionsCanApproveUninstalledApps | Bool | False |
Field containing PermissionsCanApproveUninstalledApps information. | |
| PermissionsSetupAgentBuilder | Bool | False |
Field containing PermissionsSetupAgentBuilder information. | |
| PermissionsSetupAgentUser | Bool | False |
Field containing PermissionsSetupAgentUser information. | |
| PermissionsUserCanDeployStore | Bool | False |
Field containing PermissionsUserCanDeployStore information. | |
| PermissionsModifyAccessDenyPolicies | Bool | False |
Field containing PermissionsModifyAccessDenyPolicies information. | |
| PermissionsManageAccessPolicies | Bool | False |
Field containing PermissionsManageAccessPolicies information. | |
| PermissionsViewAccessPolicies | Bool | False |
Field containing PermissionsViewAccessPolicies information. | |
| PermissionsModifyAccessAllowPolicies | Bool | False |
Field containing PermissionsModifyAccessAllowPolicies information. | |
| PermissionsViewOrchestrationsInAutomApp | Bool | False |
Field containing PermissionsViewOrchestrationsInAutomApp information. | |
| PermissionsTerritoryOperations | Bool | False |
Field containing PermissionsTerritoryOperations information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for MyDomainDiscoverableLogin.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ApexHandlerId | String | False |
ApexClass.Id |
ID of the ApexHandler associated with this record. |
| ExecuteApexHandlerAsId | String | False |
User.Id |
ID of the ExecuteApexHandlerAs associated with this record. |
| UsernameLabel | String | False |
Field containing UsernameLabel information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores user-created notes attached to Salesforce records for reference and documentation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the note. | |
| IsDeleted | Bool | True |
Indicates whether the note has been deleted. | |
| ParentId | String | False |
ID of the parent record associated with the note. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Title | String | False |
Title of the note. | |
| IsPrivate | Bool | False |
Indicates whether the note is marked as private. | |
| Body | String | False |
Main content or body text of the note. | |
| OwnerId | String | False |
User.Id |
ID of the user who owns the note. |
| CreatedDate | Datetime | True |
Date and time when the note was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the note. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the note. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last update of the note. | |
| LastModifiedDate | Datetime | True |
Date and time when the note was last modified. |
Schema file for OauthCustomScope.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| IsPublic | Bool | False |
Indicates whether the record has the Public characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OauthCustomScopeApp.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OauthCustomScopeId | String | False |
ID of the OauthCustomScope associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OauthTokenExchangeHandler.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| IsEnabled | Bool | False |
Indicates whether the record has the Enabled characteristic. | |
| SupportedTokenTypesAccessToken | Bool | False |
Field containing SupportedTokenTypesAccessToken information. | |
| SupportedTokenTypesRefreshToken | Bool | False |
Field containing SupportedTokenTypesRefreshToken information. | |
| SupportedTokenTypesIdToken | Bool | False |
Field containing SupportedTokenTypesIdToken information. | |
| SupportedTokenTypesSaml2 | Bool | False |
Field containing SupportedTokenTypesSaml2 information. | |
| SupportedTokenTypesJwt | Bool | False |
Field containing SupportedTokenTypesJwt information. | |
| IsUserCreationAllowed | Bool | False |
Indicates whether the record has the UserCreationAllowed characteristic. | |
| TokenHandlerApexId | String | False |
ApexClass.Id |
ID of the TokenHandlerApex associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OauthTokenExchHandlerApp.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OauthTokenExchangeHandlerId | String | False |
ID of the OauthTokenExchangeHandler associated with this record. | |
| ExternalClientApplicationId | String | False |
ID of the ExternalClientApplication associated with this record. | |
| IsDefault | Bool | False |
Indicates whether the record has the Default characteristic. | |
| ApexExecutionUserId | String | False |
User.Id |
ID of the ApexExecutionUser associated with this record. |
| ConnectedApplicationId | String | False |
ID of the ConnectedApplication associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Defines object-level permissions, controlling user access to different Salesforce objects.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the object permission entry. | |
| ParentId | String | False |
ID of the related permission set or profile that this object permission belongs to. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SobjectType | String | False |
API name of the object that these permissions apply to. | |
| PermissionsCreate | Bool | False |
Indicates whether users can create new records of the specified object. | |
| PermissionsRead | Bool | False |
Indicates whether users can view records of the specified object. | |
| PermissionsEdit | Bool | False |
Indicates whether users can edit existing records of the specified object. | |
| PermissionsDelete | Bool | False |
Indicates whether users can delete records of the specified object. | |
| PermissionsViewAllRecords | Bool | False |
Indicates whether users can view all records of the object, regardless of sharing rules. | |
| PermissionsModifyAllRecords | Bool | False |
Indicates whether users can edit and delete all records of the object, regardless of sharing rules. | |
| PermissionsViewAllFields | Bool | False |
Field containing PermissionsViewAllFields information. | |
| CreatedDate | Datetime | True |
Date and time when the object permission record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the object permission record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the object permission record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last update of the object permission record. | |
| LastModifiedDate | Datetime | True |
Date and time when the object permission record was last modified. |
Schema file for ObjectTerritory2AssignmentRule.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Territory2ModelId | String | False |
ID of the Territory2Model associated with this record. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ObjectType | String | False |
Type classification for Object. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| BooleanFilter | String | False |
Field containing BooleanFilter information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ObjectTerritory2AssignmentRuleItem.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| RuleId | String | False |
ID of the Rule associated with this record. | |
| Field | String | False |
Field containing Field information. | |
| Operation | String | False |
Field containing Operation information. | |
| SortOrder | Int | False |
Field containing SortOrder information. | |
| Value | String | False |
Field containing Value information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ObjectTerritory2Association.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ObjectId | String | False |
ID of the Object associated with this record. | |
| ObjectIdType | String | False |
Specifies the type of the 'ObjectId' polymorphic field to use in the statement. | |
| ObjectIdExternalFieldName | String | False |
Specifies the external field name of the 'ObjectId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Territory2Id | String | False |
Territory2.Id |
ID of the Territory2 associated with this record. |
| AssociationCause | String | False |
Field containing AssociationCause information. | |
| SobjectType | String | True |
Type classification for Sobject. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OnboardingMetrics.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| SeenCount | Int | False |
Number of Seen associated with this record. | |
| ExperienceName | String | False |
Field containing ExperienceName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Tracks potential revenue-generating sales deals, managing the sales pipeline.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the opportunity record. | |
| IsDeleted | Bool | True |
Indicates whether the opportunity has been deleted. | |
| AccountId | String | False |
Account.Id |
Reference to the account associated with this opportunity. |
| IsPrivate | Bool | False |
Indicates whether the opportunity is marked as private. | |
| Name | String | False |
Name of the opportunity. | |
| Description | String | False |
Detailed description of the opportunity. | |
| StageName | String | False |
Current stage in the opportunity sales process. | |
| Amount | Decimal | False |
Total monetary value associated with the opportunity. | |
| Probability | Double | False |
Estimated probability (as a percentage) that the opportunity will be closed successfully. | |
| ExpectedRevenue | Decimal | True |
Calculated expected revenue based on the amount and probability. | |
| TotalOpportunityQuantity | Double | False |
Total number of products or services included in the opportunity. | |
| CloseDate | Date | False |
Expected close date for the opportunity. | |
| Type | String | False |
Type or classification of the opportunity, such as New Business or Existing Business. | |
| NextStep | String | False |
Suggested next action to move the opportunity forward. | |
| LeadSource | String | False |
Source from which the opportunity originated, such as Web or Partner Referral. | |
| IsClosed | Bool | True |
Indicates whether the opportunity is closed. | |
| IsWon | Bool | True |
Indicates whether the opportunity has been won. | |
| ForecastCategory | String | True |
Category used for forecasting purposes, such as Pipeline or Closed. | |
| ForecastCategoryName | String | False |
Name of the forecast category associated with this opportunity. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CampaignId | String | False |
Campaign.Id |
Reference to the marketing campaign that influenced this opportunity. |
| HasOpportunityLineItem | Bool | True |
Indicates whether the opportunity includes associated products or line items. | |
| Pricebook2Id | String | False |
Pricebook2.Id |
Reference to the price book used for this opportunity. |
| OwnerId | String | False |
User.Id |
User ID of the opportunity owner. |
| Territory2Id | String | False |
Territory2.Id |
ID of the Territory2 associated with this record. |
| IsExcludedFromTerritory2Filter | Bool | False |
Indicates whether the record has the ExcludedFromTerritory2Filter characteristic. | |
| CreatedDate | Datetime | True |
Date and time when the opportunity was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the opportunity. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the opportunity. |
| LastActivityDate | Date | True |
Date of the last activity associated with this opportunity. | |
| PushCount | Int | True |
Number of Push associated with this record. | |
| LastStageChangeDate | Datetime | True |
Date associated with LastStageChange. | |
| FiscalQuarter | Int | True |
Fiscal quarter in which the opportunity is expected to close. | |
| FiscalYear | Int | True |
Fiscal year in which the opportunity is expected to close. | |
| Fiscal | String | True |
Fiscal period for reporting purposes, such as Q1 2025. | |
| ContactId | String | False |
Contact.Id |
ID of the Contact associated with this record. |
| LastViewedDate | Datetime | True |
Date and time when the opportunity was last viewed. | |
| LastReferencedDate | Datetime | True |
Date and time when the opportunity was last referenced by a user. | |
| HasOpenActivity | Bool | True |
Indicates whether the record has OpenActivity. | |
| HasOverdueTask | Bool | True |
Indicates whether the record has OverdueTask. | |
| LastAmountChangedHistoryId | String | True |
ID of the LastAmountChangedHistory associated with this record. | |
| LastCloseDateChangedHistoryId | String | True |
ID of the LastCloseDateChangedHistory associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last modification of the opportunity. | |
| LastModifiedDate | Datetime | True |
Date and time when the opportunity was last modified. |
Stores details of competitors associated with an opportunity, helping track competitive insights.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the opportunity competitor record. | |
| OpportunityId | String | False |
Opportunity.Id |
Reference to the opportunity associated with this competitor. |
| CompetitorName | String | False |
Name of the competing company or product. | |
| Strengths | String | False |
Identified strengths of the competitor relevant to the opportunity. | |
| Weaknesses | String | False |
Identified weaknesses of the competitor relevant to the opportunity. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the opportunity competitor record. |
| CreatedDate | Datetime | True |
Date and time when the opportunity competitor record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the opportunity competitor record. |
| IsDeleted | Bool | True |
Indicates whether the opportunity competitor record has been deleted. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last modification of the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the opportunity competitor record was last modified. |
Defines the relationship between contacts and opportunities, specifying their role in a sales deal.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the opportunity contact role record. | |
| OpportunityId | String | False |
Opportunity.Id |
Reference to the opportunity associated with this contact role. |
| ContactId | String | False |
Contact.Id |
Reference to the contact associated with the opportunity. |
| Role | String | False |
The contact's role in relation to the opportunity, such as Decision Maker or Influencer. | |
| IsPrimary | Bool | False |
Indicates whether this contact is the primary contact for the opportunity. | |
| CreatedDate | Datetime | True |
Date and time when the opportunity contact role record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the opportunity contact role record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the opportunity contact role record. |
| IsDeleted | Bool | True |
Indicates whether the opportunity contact role record has been deleted. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last modification of the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the opportunity contact role record was last modified. |
Captures Chatter activity, including posts and updates, related to opportunity records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the opportunity feed item. | |
| ParentId | String | True |
Opportunity.Id |
Reference to the opportunity record this feed item is related to. |
| Type | String | True |
Type of the feed item, such as TextPost or ContentPost. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
Number of comments associated with the feed item. | |
| LikeCount | Int | True |
Number of likes associated with the feed item. | |
| Title | String | True |
Title of the feed item, typically used for content-related posts. | |
| Body | String | True |
Main content or message body of the feed item. | |
| LinkUrl | String | True |
URL of any external link included in the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of a related record referenced in the feed item, such as an attachment or task. | |
| InsertedById | String | True |
User.Id |
ID of the user who inserted the feed item on behalf of another user or system. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last update of the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Represents products or services associated with an opportunity, tracking pricing and quantities.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the opportunity line item. | |
| OpportunityId | String | False |
Opportunity.Id |
Reference to the opportunity associated with this line item. |
| SortOrder | Int | False |
Position of the line item in the opportunity's product list. | |
| PricebookEntryId | String | False |
Reference to the price book entry for the associated product. | |
| Product2Id | String | False |
Product2.Id |
ID of the Product associated with this record. |
| ProductCode | String | True |
Field containing ProductCode information. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| Quantity | Double | False |
Number of product units included in the line item. | |
| TotalPrice | Decimal | False |
Total price for the line item, calculated as quantity multiplied by unit price. | |
| UnitPrice | Decimal | False |
Actual sales price per unit for the product. | |
| ListPrice | Decimal | True |
Standard list price per unit from the price book. | |
| ServiceDate | Date | False |
Date when the product or service is scheduled for delivery or service. | |
| Description | String | False |
Description or details of the opportunity line item. | |
| CreatedDate | Datetime | True |
Date and time when the line item was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the line item. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the line item. |
| IsDeleted | Bool | True |
Indicates whether the opportunity line item has been deleted. | |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System timestamp used for tracking and replication purposes. | |
| LastModifiedDate | Datetime | True |
Date and time when the line item was last modified. |
Stores details of business partners associated with an opportunity, tracking partnership involvement.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the opportunity partner record. | |
| OpportunityId | String | False |
Opportunity.Id |
Reference to the opportunity associated with the partner. |
| AccountToId | String | False |
Account.Id |
Reference to the partner account involved in the opportunity. |
| Role | String | False |
Describes the role of the partner in relation to the opportunity. | |
| IsPrimary | Bool | False |
Indicates whether this partner is designated as the primary partner. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the opportunity partner record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the opportunity partner record. |
| IsDeleted | Bool | True |
Indicates whether the opportunity partner record has been deleted. | |
| ReversePartnerId | String | True |
Reference to the related partner record representing the reverse relationship. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System timestamp used for tracking changes and replication. | |
| LastModifiedDate | Datetime | True |
Date and time when the opportunity partner record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the opportunity partner record was created. |
Schema file for Order.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ContractId | String | False |
Contract.Id |
ID of the Contract associated with this record. |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| Pricebook2Id | String | False |
Pricebook2.Id |
ID of the Pricebook2 associated with this record. |
| OriginalOrderId | String | False |
Order.Id |
ID of the OriginalOrder associated with this record. |
| EffectiveDate | Date | False |
Date associated with Effective. | |
| EndDate | Date | False |
End date for the record or activity. | |
| IsReductionOrder | Bool | False |
Indicates whether the record has the ReductionOrder characteristic. | |
| Status | String | False |
Status of the record. | |
| Description | String | False |
Text description of the record. | |
| CustomerAuthorizedById | String | False |
Contact.Id |
ID of the CustomerAuthorizedBy associated with this record. |
| CustomerAuthorizedDate | Date | False |
Date associated with CustomerAuthorized. | |
| CompanyAuthorizedById | String | False |
User.Id |
ID of the CompanyAuthorizedBy associated with this record. |
| CompanyAuthorizedDate | Date | False |
Date associated with CompanyAuthorized. | |
| Type | String | False |
Type of account or classification. | |
| BillingStreet | String | False |
Street address for Billing purposes. | |
| BillingCity | String | False |
City for Billing address. | |
| BillingState | String | False |
State or province for Billing address. | |
| BillingPostalCode | String | False |
Postal code for Billing address. | |
| BillingCountry | String | False |
Country for Billing address. | |
| BillingLatitude | Double | False |
Latitude coordinate for Billing address geolocation. | |
| BillingLongitude | Double | False |
Longitude coordinate for Billing address geolocation. | |
| BillingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Billing address. | |
| ShippingStreet | String | False |
Street address for Shipping purposes. | |
| ShippingCity | String | False |
City for Shipping address. | |
| ShippingState | String | False |
State or province for Shipping address. | |
| ShippingPostalCode | String | False |
Postal code for Shipping address. | |
| ShippingCountry | String | False |
Country for Shipping address. | |
| ShippingLatitude | Double | False |
Latitude coordinate for Shipping address geolocation. | |
| ShippingLongitude | Double | False |
Longitude coordinate for Shipping address geolocation. | |
| ShippingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Shipping address. | |
| Name | String | False |
Name of the record. | |
| PoDate | Date | False |
Date associated with Po. | |
| PoNumber | String | False |
Po identification number. | |
| OrderReferenceNumber | String | False |
OrderReference identification number. | |
| BillToContactId | String | False |
Contact.Id |
ID of the BillToContact associated with this record. |
| ShipToContactId | String | False |
Contact.Id |
ID of the ShipToContact associated with this record. |
| ActivatedDate | Datetime | False |
Date associated with Activated. | |
| ActivatedById | String | False |
User.Id |
ID of the ActivatedBy associated with this record. |
| StatusCode | String | False |
Field containing StatusCode information. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| RelatedOrderId | String | True |
Order.Id |
ID of the RelatedOrder associated with this record. |
| OrderNumber | String | True |
Order identification number. | |
| TotalAmount | Decimal | True |
Field containing TotalAmount information. | |
| RelatedOrderType | String | True |
Type classification for RelatedOrder. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderAdjustmentGroup.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderId | String | False |
Order.Id |
ID of the Order associated with this record. |
| RelatedAdjustmentGroupId | String | True |
ID of the RelatedAdjustmentGroup associated with this record. | |
| Type | String | False |
Type of account or classification. | |
| TotalAmount | Decimal | True |
Field containing TotalAmount information. | |
| TotalTaxAmount | Decimal | True |
Field containing TotalTaxAmount information. | |
| GrandTotalAmount | Decimal | True |
Field containing GrandTotalAmount information. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderAdjustmentGroupFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderAdjustmentGroupSummary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderSummaryId | String | True |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| OriginalOrderAdjGroupId | String | True |
ID of the OriginalOrderAdjGroup associated with this record. | |
| Type | String | True |
Type of account or classification. | |
| TotalAmount | Decimal | True |
Field containing TotalAmount information. | |
| TotalTaxAmount | Decimal | True |
Field containing TotalTaxAmount information. | |
| GrandTotalAmount | Decimal | True |
Field containing GrandTotalAmount information. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderAdjustmentGroupSummaryFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderChangeLogFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderDeliveryGroup.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| OrderDeliveryGroupNumber | String | True |
OrderDeliveryGroup identification number. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderId | String | False |
Order.Id |
ID of the Order associated with this record. |
| OrderDeliveryMethodId | String | False |
ID of the OrderDeliveryMethod associated with this record. | |
| RelatedDeliveryGroupId | String | True |
ID of the RelatedDeliveryGroup associated with this record. | |
| DeliverToName | String | False |
Field containing DeliverToName information. | |
| PhoneNumber | String | False |
Phone identification number. | |
| EmailAddress | String | False |
Field containing EmailAddress information. | |
| DeliverToStreet | String | False |
Street address for DeliverTo purposes. | |
| DeliverToCity | String | False |
City for DeliverTo address. | |
| DeliverToState | String | False |
State or province for DeliverTo address. | |
| DeliverToPostalCode | String | False |
Postal code for DeliverTo address. | |
| DeliverToCountry | String | False |
Country for DeliverTo address. | |
| DeliverToLatitude | Double | False |
Latitude coordinate for DeliverTo address geolocation. | |
| DeliverToLongitude | Double | False |
Longitude coordinate for DeliverTo address geolocation. | |
| DeliverToGeocodeAccuracy | String | False |
Accuracy level of the geocode for the DeliverTo address. | |
| IsGift | Bool | False |
Indicates whether the record has the Gift characteristic. | |
| PromisedDeliveryDate | Date | False |
Date associated with PromisedDelivery. | |
| DesiredDeliveryDate | Date | False |
Date associated with DesiredDelivery. | |
| DeliverToFullLastName | String | False |
Field containing DeliverToFullLastName information. | |
| DeliverToFullFirstName | String | False |
Field containing DeliverToFullFirstName information. | |
| DeliverToFullSalutation | String | False |
Field containing DeliverToFullSalutation information. | |
| DeliverToFullName | String | True |
Field containing DeliverToFullName information. | |
| DeliverToCompanyName | String | False |
Field containing DeliverToCompanyName information. | |
| TotalTaxAmount | Decimal | True |
Field containing TotalTaxAmount information. | |
| TotalAmount | Decimal | True |
Field containing TotalAmount information. | |
| TotalLineAmount | Decimal | True |
Field containing TotalLineAmount information. | |
| TotalAdjustmentAmount | Decimal | True |
Field containing TotalAdjustmentAmount information. | |
| TotalLineTaxAmount | Decimal | True |
Field containing TotalLineTaxAmount information. | |
| TotalAdjustmentTaxAmount | Decimal | True |
Field containing TotalAdjustmentTaxAmount information. | |
| GrandTotalAmount | Decimal | True |
Field containing GrandTotalAmount information. | |
| GiftMessage | String | False |
Field containing GiftMessage information. | |
| Description | String | False |
Text description of the record. | |
| DeliveryInstructions | String | False |
Field containing DeliveryInstructions information. | |
| TotalLineAmtWithTax | Decimal | True |
Field containing TotalLineAmtWithTax information. | |
| TotalAdjustmentAmtWithTax | Decimal | True |
Field containing TotalAdjustmentAmtWithTax information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderDeliveryGroupFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderDeliveryGroupSummary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| OrderDeliveryGroupSummaryNumber | String | True |
OrderDeliveryGroupSummary identification number. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderSummaryId | String | True |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| OriginalOrderDeliveryGroupId | String | True |
ID of the OriginalOrderDeliveryGroup associated with this record. | |
| OrderDeliveryMethodId | String | False |
ID of the OrderDeliveryMethod associated with this record. | |
| Description | String | False |
Text description of the record. | |
| EmailAddress | String | False |
Field containing EmailAddress information. | |
| PhoneNumber | String | False |
Phone identification number. | |
| DeliverToName | String | False |
Field containing DeliverToName information. | |
| DeliverToStreet | String | False |
Street address for DeliverTo purposes. | |
| DeliverToCity | String | False |
City for DeliverTo address. | |
| DeliverToState | String | False |
State or province for DeliverTo address. | |
| DeliverToPostalCode | String | False |
Postal code for DeliverTo address. | |
| DeliverToCountry | String | False |
Country for DeliverTo address. | |
| DeliverToLatitude | Double | False |
Latitude coordinate for DeliverTo address geolocation. | |
| DeliverToLongitude | Double | False |
Longitude coordinate for DeliverTo address geolocation. | |
| DeliverToGeocodeAccuracy | String | False |
Accuracy level of the geocode for the DeliverTo address. | |
| GiftMessage | String | False |
Field containing GiftMessage information. | |
| IsGift | Bool | False |
Indicates whether the record has the Gift characteristic. | |
| DeliveryInstructions | String | False |
Field containing DeliveryInstructions information. | |
| DesiredDeliveryDate | Datetime | False |
Date associated with DesiredDelivery. | |
| PromisedDeliveryDate | Datetime | False |
Date associated with PromisedDelivery. | |
| DeliverToFullLastName | String | False |
Field containing DeliverToFullLastName information. | |
| DeliverToFullFirstName | String | False |
Field containing DeliverToFullFirstName information. | |
| DeliverToFullSalutation | String | False |
Field containing DeliverToFullSalutation information. | |
| DeliverToFullName | String | True |
Field containing DeliverToFullName information. | |
| DeliverToCompanyName | String | False |
Field containing DeliverToCompanyName information. | |
| TotalLineAmount | Decimal | True |
Field containing TotalLineAmount information. | |
| TotalLineTaxAmount | Decimal | True |
Field containing TotalLineTaxAmount information. | |
| TotalAdjustmentAmount | Decimal | True |
Field containing TotalAdjustmentAmount information. | |
| TotalAdjustmentTaxAmount | Decimal | True |
Field containing TotalAdjustmentTaxAmount information. | |
| TotalAmount | Decimal | True |
Field containing TotalAmount information. | |
| TotalTaxAmount | Decimal | True |
Field containing TotalTaxAmount information. | |
| GrandTotalAmount | Decimal | True |
Field containing GrandTotalAmount information. | |
| TotalAdjustmentAmtWithTax | Decimal | True |
Field containing TotalAdjustmentAmtWithTax information. | |
| TotalLineAmtWithTax | Decimal | True |
Field containing TotalLineAmtWithTax information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderDeliveryGroupSummaryFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderDeliveryMethod.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Description | String | False |
Text description of the record. | |
| ProductId | String | False |
Product2.Id |
ID of the Product associated with this record. |
| ReferenceNumber | String | False |
Reference identification number. | |
| Carrier | String | False |
Field containing Carrier information. | |
| ClassOfService | String | False |
Field containing ClassOfService information. | |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderDeliveryMethodFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
Order.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderItem.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Product2Id | String | False |
Product2.Id |
ID of the Product associated with this record. |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| OrderId | String | False |
Order.Id |
ID of the Order associated with this record. |
| PricebookEntryId | String | False |
ID of the PricebookEntry associated with this record. | |
| OriginalOrderItemId | String | False |
OrderItem.Id |
ID of the OriginalOrderItem associated with this record. |
| AvailableQuantity | Double | True |
Field containing AvailableQuantity information. | |
| Quantity | Double | False |
Quantity of the product. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| UnitPrice | Decimal | False |
Price per unit for the product. | |
| ListPrice | Decimal | False |
List price for the product. | |
| TotalPrice | Decimal | True |
Total price for the line item. | |
| ServiceDate | Date | False |
Date associated with Service. | |
| EndDate | Date | False |
End date for the record or activity. | |
| Description | String | False |
Text description of the record. | |
| TotalLineAmount | Decimal | False |
Field containing TotalLineAmount information. | |
| RelatedOrderItemId | String | True |
OrderItem.Id |
ID of the RelatedOrderItem associated with this record. |
| Type | String | False |
Type of account or classification. | |
| TypeCode | String | True |
Field containing TypeCode information. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderItemNumber | String | True |
OrderItem identification number. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderItemAdjustmentLineItem.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderItemId | String | False |
OrderItem.Id |
ID of the OrderItem associated with this record. |
| OrderId | String | True |
Order.Id |
ID of the Order associated with this record. |
| Amount | Decimal | False |
Estimated total sale amount. | |
| RelatedAdjustmentLineItemId | String | True |
ID of the RelatedAdjustmentLineItem associated with this record. | |
| Description | String | False |
Text description of the record. | |
| TotalTaxAmount | Decimal | True |
Field containing TotalTaxAmount information. | |
| OrderAdjustmentGroupId | String | False |
ID of the OrderAdjustmentGroup associated with this record. | |
| TotalAmtWithTax | Decimal | True |
Field containing TotalAmtWithTax information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderItemAdjustmentLineItemFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderItemAdjustmentLineSummary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderItemSummaryId | String | True |
ID of the OrderItemSummary associated with this record. | |
| OriginalOrderItemAdjustmentLineItemId | String | True |
ID of the OriginalOrderItemAdjustmentLineItem associated with this record. | |
| Description | String | False |
Text description of the record. | |
| TotalTaxAmount | Decimal | True |
Field containing TotalTaxAmount information. | |
| Amount | Decimal | True |
Estimated total sale amount. | |
| TotalAmtWithTax | Decimal | True |
Field containing TotalAmtWithTax information. | |
| OrderAdjustmentGroupSummaryId | String | True |
ID of the OrderAdjustmentGroupSummary associated with this record. | |
| OrderSummaryId | String | True |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderItemAdjustmentLineSummaryFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderItemFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
OrderItem.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderItemRelationship.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MainOrderItemId | String | False |
OrderItem.Id |
ID of the MainOrderItem associated with this record. |
| AssociatedOrderItemId | String | False |
OrderItem.Id |
ID of the AssociatedOrderItem associated with this record. |
| OrderId | String | True |
Order.Id |
ID of the Order associated with this record. |
| ProductRelationshipTypeId | String | False |
ID of the ProductRelationshipType associated with this record. | |
| ProductRelatedComponentId | String | False |
ID of the ProductRelatedComponent associated with this record. | |
| AssociatedOrderItemInventory | String | False |
Field containing AssociatedOrderItemInventory information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderItemRelationshipFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderItemsRest.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | False |
Unique identifier for the record. | |
| Product2Id | String | False |
ID of the Product associated with this record. | |
| IsDeleted | Bool | False |
Indicates whether the record has been moved to the Recycle Bin. | |
| PricebookEntryId | String | False |
ID of the PricebookEntry associated with this record. | |
| OriginalOrderItemId | String | False |
ID of the OriginalOrderItem associated with this record. | |
| AvailableQuantity | Double | False |
Field containing AvailableQuantity information. | |
| Quantity | Double | False |
Quantity of the product. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| UnitPrice | Decimal | False |
Price per unit for the product. | |
| ListPrice | Decimal | False |
List price for the product. | |
| TotalPrice | Decimal | False |
Total price for the line item. | |
| ServiceDate | Date | False |
Date associated with Service. | |
| EndDate | Date | False |
End date for the record or activity. | |
| Description | String | False |
Text description of the record. | |
| TotalLineAmount | Decimal | False |
Field containing TotalLineAmount information. | |
| RelatedOrderItemId | String | False |
ID of the RelatedOrderItem associated with this record. | |
| Type | String | False |
Type of account or classification. | |
| TypeCode | String | False |
Field containing TypeCode information. | |
| CreatedDate | Datetime | False |
Date and time when the record was created. | |
| CreatedById | String | False |
ID of the user who created the record. | |
| LastModifiedDate | Datetime | False |
Date and time when the record was last modified. | |
| LastModifiedById | String | False |
ID of the user who last modified the record. | |
| SystemModstamp | Datetime | False |
Date and time when the record was last modified by a user or by an automated process. | |
| OrderId [KEY] | String | False |
ID of the Order associated with this record. | |
| OrderOwnerId | String | False |
ID of the OrderOwner associated with this record. | |
| OrderContractId | String | False |
ID of the OrderContract associated with this record. | |
| OrderAccountId | String | False |
ID of the OrderAccount associated with this record. | |
| OrderPricebook2Id | String | False |
ID of the OrderPricebook2 associated with this record. | |
| OrderOriginalOrderId | String | False |
ID of the OrderOriginalOrder associated with this record. | |
| OrderEffectiveDate | Date | False |
Date associated with OrderEffective. | |
| OrderEndDate | Date | False |
Date associated with OrderEnd. | |
| OrderIsReductionOrder | Bool | False |
Field containing OrderIsReductionOrder information. | |
| OrderStatus | String | False |
Status of the Order. | |
| OrderDescription | String | False |
Field containing OrderDescription information. | |
| OrderCustomerAuthorizedById | String | False |
ID of the OrderCustomerAuthorizedBy associated with this record. | |
| OrderCustomerAuthorizedDate | Date | False |
Date associated with OrderCustomerAuthorized. | |
| OrderCompanyAuthorizedById | String | False |
ID of the OrderCompanyAuthorizedBy associated with this record. | |
| OrderCompanyAuthorizedDate | Date | False |
Date associated with OrderCompanyAuthorized. | |
| OrderType | String | False |
Type classification for Order. | |
| OrderBillingStreet | String | False |
Street address for OrderBilling purposes. | |
| OrderBillingCity | String | False |
City for OrderBilling address. | |
| OrderBillingState | String | False |
State or province for OrderBilling address. | |
| OrderBillingPostalCode | String | False |
Postal code for OrderBilling address. | |
| OrderBillingCountry | String | False |
Country for OrderBilling address. | |
| OrderBillingLatitude | Double | False |
Latitude coordinate for OrderBilling address geolocation. | |
| OrderBillingLongitude | Double | False |
Longitude coordinate for OrderBilling address geolocation. | |
| OrderBillingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the OrderBilling address. | |
| OrderBillingAddress | String | False |
Field containing OrderBillingAddress information. | |
| OrderShippingStreet | String | False |
Street address for OrderShipping purposes. | |
| OrderShippingCity | String | False |
City for OrderShipping address. | |
| OrderShippingState | String | False |
State or province for OrderShipping address. | |
| OrderShippingPostalCode | String | False |
Postal code for OrderShipping address. | |
| OrderShippingCountry | String | False |
Country for OrderShipping address. | |
| OrderShippingLatitude | Double | False |
Latitude coordinate for OrderShipping address geolocation. | |
| OrderShippingLongitude | Double | False |
Longitude coordinate for OrderShipping address geolocation. | |
| OrderShippingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the OrderShipping address. | |
| OrderShippingAddress | String | False |
Field containing OrderShippingAddress information. | |
| OrderName | String | False |
Field containing OrderName information. | |
| OrderPoDate | Date | False |
Date associated with OrderPo. | |
| OrderPoNumber | String | False |
OrderPo identification number. | |
| OrderReferenceNumber | String | False |
OrderReference identification number. | |
| OrderBillToContactId | String | False |
ID of the OrderBillToContact associated with this record. | |
| OrderShipToContactId | String | False |
ID of the OrderShipToContact associated with this record. | |
| OrderActivatedDate | Datetime | False |
Date associated with OrderActivated. | |
| OrderActivatedById | String | False |
ID of the OrderActivatedBy associated with this record. | |
| OrderStatusCode | String | False |
Field containing OrderStatusCode information. | |
| OrderCurrencyIsoCode | String | False |
Field containing OrderCurrencyIsoCode information. | |
| OrderRelatedOrderId | String | False |
ID of the OrderRelatedOrder associated with this record. | |
| OrderNumber | String | False |
Order identification number. | |
| OrderTotalAmount | Decimal | False |
Field containing OrderTotalAmount information. | |
| OrderRelatedOrderType | String | False |
Type classification for OrderRelatedOrder. | |
| OrderCreatedDate | Datetime | False |
Date associated with OrderCreated. | |
| OrderCreatedById | String | False |
ID of the OrderCreatedBy associated with this record. | |
| OrderLastModifiedDate | Datetime | False |
Date associated with OrderLastModified. | |
| OrderLastModifiedById | String | False |
ID of the OrderLastModifiedBy associated with this record. | |
| OrderIsDeleted | Bool | False |
Field containing OrderIsDeleted information. | |
| OrderSystemModstamp | Datetime | False |
Field containing OrderSystemModstamp information. | |
| OrderLastViewedDate | Datetime | False |
Date associated with OrderLastViewed. | |
| OrderLastReferencedDate | Datetime | False |
Date associated with OrderLastReferenced. | |
| OrderExternalId | String | False |
ID of the OrderExternal associated with this record. |
Schema file for OrderItemSummary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderSummaryId | String | True |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| OriginalOrderItemId | String | True |
OrderItem.Id |
ID of the OriginalOrderItem associated with this record. |
| OrderDeliveryGroupSummaryId | String | True |
ID of the OrderDeliveryGroupSummary associated with this record. | |
| AssetId | String | True |
Asset.Id |
ID of the Asset associated with this record. |
| Product2Id | String | True |
Product2.Id |
ID of the Product associated with this record. |
| ProductCode | String | True |
Field containing ProductCode information. | |
| StockKeepingUnit | String | True |
Field containing StockKeepingUnit information. | |
| LineNumber | Int | True |
Line identification number. | |
| Type | String | True |
Type of account or classification. | |
| TypeCode | String | True |
Field containing TypeCode information. | |
| ReservedAtLocationId | String | False |
ID of the ReservedAtLocation associated with this record. | |
| ReservedAtLocationIdType | String | False |
Specifies the type of the 'ReservedAtLocationId' polymorphic field to use in the statement. | |
| ReservedAtLocationIdExternalFieldName | String | False |
Specifies the external field name of the 'ReservedAtLocationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Quantity | Double | True |
Quantity of the product. | |
| ListPrice | Decimal | True |
List price for the product. | |
| UnitPrice | Decimal | True |
Price per unit for the product. | |
| QuantityAllocated | Double | True |
Field containing QuantityAllocated information. | |
| QuantityReshipped | Double | True |
Field containing QuantityReshipped information. | |
| QuantityCanceled | Double | True |
Field containing QuantityCanceled information. | |
| QuantityOrdered | Double | True |
Field containing QuantityOrdered information. | |
| Status | String | True |
Status of the record. | |
| QuantityFulfilled | Double | True |
Field containing QuantityFulfilled information. | |
| QuantityReturned | Double | True |
Field containing QuantityReturned information. | |
| TotalLineAmount | Decimal | True |
Field containing TotalLineAmount information. | |
| ServiceDate | Date | True |
Date associated with Service. | |
| EndDate | Date | True |
End date for the record or activity. | |
| Description | String | False |
Text description of the record. | |
| QuantityReturnInitiated | Double | True |
Field containing QuantityReturnInitiated information. | |
| PricebookEntryId | String | True |
ID of the PricebookEntry associated with this record. | |
| EarliestEstimatedDeliveryDate | Date | False |
Date associated with EarliestEstimatedDelivery. | |
| LatestEstimatedDeliveryDate | Date | False |
Date associated with LatestEstimatedDelivery. | |
| EarliestEstimatedDeliveryTime | Time | False |
Field containing EarliestEstimatedDeliveryTime information. | |
| LatestEstimatedDeliveryTime | Time | False |
Field containing LatestEstimatedDeliveryTime information. | |
| EstimatedDeliveryReference | String | False |
Field containing EstimatedDeliveryReference information. | |
| EstimatedDeliveryTimeZone | String | False |
Field containing EstimatedDeliveryTimeZone information. | |
| GrossUnitPrice | Decimal | True |
Field containing GrossUnitPrice information. | |
| QuantityShipped | Double | False |
Field containing QuantityShipped information. | |
| MainOrderItemSummaryId | String | True |
ID of the MainOrderItemSummary associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderItemSummaryChange.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| OrderItemSummaryChangeNumber | String | True |
OrderItemSummaryChange identification number. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderItemSummaryId | String | True |
ID of the OrderItemSummary associated with this record. | |
| ChangeOrderItemId | String | True |
OrderItem.Id |
ID of the ChangeOrderItem associated with this record. |
| OrderSummaryId | String | True |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| Reason | String | True |
Field containing Reason information. | |
| ChangeType | String | True |
Type classification for Change. | |
| IsPreFulfillment | Bool | True |
Indicates whether the record has the PreFulfillment characteristic. | |
| ReasonText | String | True |
Field containing ReasonText information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderItemSummaryFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderItemSummaryRelationship.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MainOrderItemSummaryId | String | True |
ID of the MainOrderItemSummary associated with this record. | |
| MainOrderSummaryId | String | True |
OrderSummary.Id |
ID of the MainOrderSummary associated with this record. |
| AssociatedOrderItemSummaryId | String | True |
ID of the AssociatedOrderItemSummary associated with this record. | |
| OrderItemRelationshipId | String | True |
ID of the OrderItemRelationship associated with this record. | |
| ProductRelatedComponentId | String | True |
ID of the ProductRelatedComponent associated with this record. | |
| ProductRelationshipTypeId | String | True |
ID of the ProductRelationshipType associated with this record. | |
| MainOrderItemSummaryRole | String | True |
Field containing MainOrderItemSummaryRole information. | |
| AssociatedOrderItemSummaryRole | String | True |
Field containing AssociatedOrderItemSummaryRole information. | |
| AssociatedOrderItemSumPricing | String | True |
Field containing AssociatedOrderItemSumPricing information. | |
| AssociatedQuanScaleMethod | String | True |
Field containing AssociatedQuanScaleMethod information. | |
| AssociatedOrderItemInventory | String | True |
Field containing AssociatedOrderItemInventory information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderItemTaxLineItem.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderItemId | String | False |
OrderItem.Id |
ID of the OrderItem associated with this record. |
| OrderId | String | True |
Order.Id |
ID of the Order associated with this record. |
| OrderItemAdjustmentLineItemId | String | False |
ID of the OrderItemAdjustmentLineItem associated with this record. | |
| Type | String | False |
Type of account or classification. | |
| Amount | Decimal | False |
Estimated total sale amount. | |
| Rate | Double | False |
Field containing Rate information. | |
| TaxEffectiveDate | Date | False |
Date associated with TaxEffective. | |
| RelatedTaxLineItemId | String | True |
ID of the RelatedTaxLineItem associated with this record. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderItemTaxLineItemFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderItemTaxLineItemSummary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderItemSummaryId | String | True |
ID of the OrderItemSummary associated with this record. | |
| OriginalOrderItemTaxLineItemId | String | True |
ID of the OriginalOrderItemTaxLineItem associated with this record. | |
| OrderItemAdjustmentLineSummaryId | String | True |
ID of the OrderItemAdjustmentLineSummary associated with this record. | |
| Type | String | True |
Type of account or classification. | |
| Amount | Decimal | True |
Estimated total sale amount. | |
| Description | String | False |
Text description of the record. | |
| Rate | Double | True |
Field containing Rate information. | |
| TaxEffectiveDate | Date | True |
Date associated with TaxEffective. | |
| OrderSummaryId | String | True |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| CalculationReferenceNumber | String | True |
CalculationReference identification number. | |
| ReferenceNumber | String | True |
Reference identification number. | |
| TransactionReferenceNumber | String | False |
TransactionReference identification number. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderItemTaxLineItemSummaryFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderPaymentSummary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Method | String | False |
Field containing Method information. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| OrderSummaryId | String | False |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| PaymentMethodId | String | True |
ID of the payment method used. | |
| LastPaymentGatewayLogId | String | True |
ID of the LastPaymentGatewayLog associated with this record. | |
| FullName | String | False |
Field containing FullName information. | |
| Type | String | False |
Type of account or classification. | |
| AuthorizationReversalAmount | Decimal | True |
Field containing AuthorizationReversalAmount information. | |
| AuthorizationAmount | Decimal | True |
Field containing AuthorizationAmount information. | |
| CapturedAmount | Decimal | True |
Field containing CapturedAmount information. | |
| BalanceAmount | Decimal | True |
Field containing BalanceAmount information. | |
| PendingAuthorizationAmount | Decimal | True |
Field containing PendingAuthorizationAmount information. | |
| PendingReverseAuthAmount | Decimal | True |
Field containing PendingReverseAuthAmount information. | |
| PendingCaptureAmount | Decimal | True |
Field containing PendingCaptureAmount information. | |
| PendingRefundAmount | Decimal | True |
Field containing PendingRefundAmount information. | |
| RefundedAmount | Decimal | True |
Field containing RefundedAmount information. | |
| LastPaymentGatewayMessage | String | False |
Field containing LastPaymentGatewayMessage information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderPaymentSummaryFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderPaymentSummaryReference.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Method | String | False |
Field containing Method information. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| OrderPaymentSummaryId | String | False |
ID of the OrderPaymentSummary associated with this record. | |
| OrderSummaryId | String | False |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| Type | String | False |
Type of account or classification. | |
| AuthorizationAmount | Decimal | True |
Field containing AuthorizationAmount information. | |
| CapturedAmount | Decimal | True |
Field containing CapturedAmount information. | |
| RefundedAmount | Decimal | True |
Field containing RefundedAmount information. | |
| ReservedBalanceAmount | Decimal | False |
Field containing ReservedBalanceAmount information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderSummary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| OrderNumber | String | False |
Order identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| OriginalOrderId | String | True |
Order.Id |
ID of the OriginalOrder associated with this record. |
| AccountId | String | True |
Account.Id |
ID of the Account associated with this record. |
| ChangeOrderId | String | True |
Order.Id |
ID of the ChangeOrder associated with this record. |
| BillingStreet | String | False |
Street address for Billing purposes. | |
| BillingCity | String | False |
City for Billing address. | |
| BillingState | String | False |
State or province for Billing address. | |
| BillingPostalCode | String | False |
Postal code for Billing address. | |
| BillingCountry | String | False |
Country for Billing address. | |
| BillingLatitude | Double | False |
Latitude coordinate for Billing address geolocation. | |
| BillingLongitude | Double | False |
Longitude coordinate for Billing address geolocation. | |
| BillingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Billing address. | |
| BillingEmailAddress | String | False |
Field containing BillingEmailAddress information. | |
| BillingPhoneNumber | String | False |
BillingPhone identification number. | |
| TaxLocaleType | String | True |
Type classification for TaxLocale. | |
| OrderedDate | Datetime | True |
Date associated with Ordered. | |
| Status | String | False |
Status of the record. | |
| Description | String | False |
Text description of the record. | |
| SalesStoreId | String | True |
WebStore.Id |
ID of the SalesStore associated with this record. |
| SalesStoreIdType | String | False |
Specifies the type of the 'SalesStoreId' polymorphic field to use in the statement. | |
| SalesStoreIdExternalFieldName | String | False |
Specifies the external field name of the 'SalesStoreId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SalesChannelId | String | True |
SalesChannel.Id |
ID of the SalesChannel associated with this record. |
| PoNumber | String | False |
Po identification number. | |
| PoDate | Datetime | False |
Date associated with Po. | |
| OrderLifeCycleType | String | True |
Type classification for OrderLifeCycle. | |
| BillToContactId | String | False |
Contact.Id |
ID of the BillToContact associated with this record. |
| ExternalReferenceIdentifier | String | False |
Field containing ExternalReferenceIdentifier information. | |
| IsSuspended | Bool | False |
Indicates whether the record has the Suspended characteristic. | |
| ActiveProcessExceptionCount | Int | True |
Number of ActiveProcessException associated with this record. | |
| RoutingAttempts | Int | False |
Field containing RoutingAttempts information. | |
| OrderProductLineCount | Int | True |
Number of OrderProductLine associated with this record. | |
| BusinessModel | String | False |
Field containing BusinessModel information. | |
| SourceProcess | String | True |
Field containing SourceProcess information. | |
| SourceOrderSummaryId | String | True |
OrderSummary.Id |
ID of the SourceOrderSummary associated with this record. |
| Pricebook2Id | String | True |
Pricebook2.Id |
ID of the Pricebook2 associated with this record. |
| OperationInProgress | String | True |
Field containing OperationInProgress information. | |
| EffectiveDate | Date | True |
Date associated with Effective. | |
| OriginalOrderName | String | True |
Field containing OriginalOrderName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderSummaryAdditionalInfo.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrderSummaryId | String | True |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| OrderId | String | False |
Order.Id |
ID of the Order associated with this record. |
| InventoryReservationState | String | False |
State or province for InventoryReservation address. | |
| InventoryReservationIdentifier | String | False |
Field containing InventoryReservationIdentifier information. | |
| InventoryReservationMessage | String | False |
Field containing InventoryReservationMessage information. | |
| InventoryReservationExtRef | String | False |
Field containing InventoryReservationExtRef information. | |
| AdjustmentsVersion | String | True |
Field containing AdjustmentsVersion information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderSummaryAdditionalInfoFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderSummaryFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
OrderSummary.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrderSummaryRelationship.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| MainOrderSummaryId | String | False |
OrderSummary.Id |
ID of the MainOrderSummary associated with this record. |
| RootOrderSummaryId | String | False |
OrderSummary.Id |
ID of the RootOrderSummary associated with this record. |
| AssociatedOrderSummaryId | String | False |
OrderSummary.Id |
ID of the AssociatedOrderSummary associated with this record. |
| MainAttachedToId | String | False |
Order.Id |
ID of the MainAttachedTo associated with this record. |
| MainAttachedToIdType | String | False |
Specifies the type of the 'MainAttachedToId' polymorphic field to use in the statement. | |
| MainAttachedToIdExternalFieldName | String | False |
Specifies the external field name of the 'MainAttachedToId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| AssociatedRelationshipType | String | False |
Type classification for AssociatedRelationship. | |
| AssociatedOrderSummaryStatus | String | True |
Status of the AssociatedOrderSummary. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrderSummaryRoutingSchedule.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| OrderSummaryId | String | False |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| ScheduledDatetime | Datetime | False |
Field containing ScheduledDatetime information. | |
| Reason | String | False |
Field containing Reason information. | |
| ScheduleStatus | String | False |
Status of the Schedule. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores information about the Salesforce organization, including company settings and preferences.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the organization record. | |
| Name | String | False |
Name of the organization. | |
| Division | String | False |
Division or business unit of the organization. | |
| Street | String | False |
Street address of the organization. | |
| City | String | False |
City where the organization is located. | |
| State | String | False |
State or province where the organization is located. | |
| PostalCode | String | False |
ZIP or postal code of the organization's address. | |
| Country | String | True |
Country where the organization is located. | |
| Latitude | Double | False |
Latitude coordinate of the organization's address. | |
| Longitude | Double | False |
Longitude coordinate of the organization's address. | |
| GeocodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| Phone | String | False |
Primary phone number of the organization. | |
| Fax | String | False |
Fax number of the organization. | |
| PrimaryContact | String | False |
Name or ID of the primary contact for the organization. | |
| DefaultLocaleSidKey | String | False |
Default locale setting for the organization, such as date and number formats. | |
| TimeZoneSidKey | String | False |
Field containing TimeZoneSidKey information. | |
| LanguageLocaleKey | String | False |
Language preference for the organization. | |
| ReceivesInfoEmails | Bool | False |
Indicates whether the organization receives informational emails from Salesforce. | |
| ReceivesAdminInfoEmails | Bool | False |
Indicates whether the organization receives administrative emails from Salesforce. | |
| PreferencesRequireOpportunityProducts | Bool | False |
Indicates whether products are required on opportunities. | |
| PreferencesEmailSenderIdCompliance | Bool | False |
Field containing PreferencesEmailSenderIdCompliance information. | |
| PreferencesTransactionSecurityPolicy | Bool | False |
Field containing PreferencesTransactionSecurityPolicy information. | |
| PreferencesConsentManagementEnabled | Bool | False |
Field containing PreferencesConsentManagementEnabled information. | |
| PreferencesAutoSelectIndividualOnMerge | Bool | False |
Field containing PreferencesAutoSelectIndividualOnMerge information. | |
| PreferencesLightningLoginEnabled | Bool | False |
Field containing PreferencesLightningLoginEnabled information. | |
| PreferencesOnlyLLPermUserAllowed | Bool | False |
Field containing PreferencesOnlyLLPermUserAllowed information. | |
| FiscalYearStartMonth | Int | True |
Month in which the organization's fiscal year starts. | |
| UsesStartDateAsFiscalYearName | Bool | True |
Indicates whether the fiscal year name is based on the start date. | |
| DefaultAccountAccess | String | True |
Default sharing access level for accounts. | |
| DefaultContactAccess | String | True |
Default sharing access level for contacts. | |
| DefaultOpportunityAccess | String | True |
Default sharing access level for opportunities. | |
| DefaultLeadAccess | String | True |
Default sharing access level for leads. | |
| DefaultCaseAccess | String | True |
Default sharing access level for cases. | |
| DefaultCalendarAccess | String | True |
Default sharing access level for calendars. | |
| DefaultPricebookAccess | String | True |
Default sharing access level for price books. | |
| DefaultCampaignAccess | String | True |
Default sharing access level for campaigns. | |
| DelegatedAuthenticationServiceUrl | String | False |
Field containing DelegatedAuthenticationServiceUrl information. | |
| ComplianceBccEmail | String | True |
Email address used for compliance BCC on outbound emails. | |
| UiSkin | String | False |
User interface theme or skin used by the organization. | |
| SignupCountryIsoCode | String | True |
Field containing SignupCountryIsoCode information. | |
| TrialExpirationDate | Datetime | True |
Date when the organization's trial expires. | |
| NumKnowledgeService | Int | True |
Field containing NumKnowledgeService information. | |
| OrganizationType | String | True |
Salesforce edition of the organization, such as Enterprise or Professional. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| InstanceName | String | True |
Field containing InstanceName information. | |
| IsSandbox | Bool | True |
Indicates whether the record has the Sandbox characteristic. | |
| WebToCaseDefaultOrigin | String | False |
Default origin value for cases created through Web-to-Case. | |
| MonthlyPageViewsUsed | Int | True |
Number of page views used by the organization in the current month. | |
| MonthlyPageViewsEntitlement | Int | True |
Total number of monthly page views allowed for the organization. | |
| IsReadOnly | Bool | True |
Indicates whether the record has the ReadOnly characteristic. | |
| CreatedDate | Datetime | True |
Date and time when the organization record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the organization record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the organization record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System timestamp for the most recent update to the organization record. | |
| LastModifiedDate | Datetime | True |
Date and time when the organization record was last modified. |
Schema file for OrgDeleteRequest.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| RequestType | String | False |
Type classification for Request. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrgEmailAddressSecurity.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | False |
Profile.Id |
ID of the parent object in the hierarchy. |
| OrgWideEmailAddressId | String | False |
ID of the OrgWideEmailAddress associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. |
Schema file for OrgMetric.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LatestOrgMetricScanSummaryId | String | False |
ID of the LatestOrgMetricScanSummary associated with this record. | |
| FeatureType | String | False |
Type classification for Feature. | |
| Category | String | False |
Field containing Category information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for OrgMetricScanResult.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrgMetricScanSummaryId | String | False |
ID of the OrgMetricScanSummary associated with this record. | |
| Url | String | False |
Field containing Url information. | |
| Object | String | False |
Field containing Object information. | |
| Date | Datetime | False |
Date associated with . | |
| Type | String | False |
Type of account or classification. | |
| Profile | Int | False |
Field containing Profile information. | |
| User | String | False |
Field containing User information. | |
| Quantity | Int | False |
Quantity of the product. | |
| ItemStatus | String | False |
Status of the Item. | |
| Flags | Int | False |
Field containing Flags information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for OrgMetricScanSummary.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OrgMetricId | String | False |
OrgMetric.Id |
ID of the OrgMetric associated with this record. |
| Status | String | False |
Status of the record. | |
| ImplementationEffort | String | False |
Field containing ImplementationEffort information. | |
| ErrorMessage | String | False |
Field containing ErrorMessage information. | |
| ItemCount | Int | False |
Number of Item associated with this record. | |
| FeatureLimit | Int | False |
Field containing FeatureLimit information. | |
| Unit | String | False |
Field containing Unit information. | |
| PercentUsage | Double | False |
Field containing PercentUsage information. | |
| ScanDate | Datetime | False |
Date associated with Scan. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Manages organization-wide email addresses used for sending system-generated emails from Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the organization-wide email address. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the email address record. |
| CreatedDate | Datetime | True |
Date and time when the email address record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the email address record. |
| IsVerified | Bool | False |
Indicates whether the record has the Verified characteristic. | |
| Address | String | False |
Organization-wide email address used for sending emails. | |
| DisplayName | String | False |
Display name associated with the organization-wide email address. | |
| IsAllowAllProfiles | Bool | False |
Indicates whether the email address is available to all user profiles. | |
| Purpose | String | False |
Field containing Purpose information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System timestamp for the most recent update to the email address record. | |
| LastModifiedDate | Datetime | True |
Date and time when the email address record was last modified. |
Schema file for OutgoingEmail.
| Name | Type | ReadOnly | References | Description |
| Id | String | True |
Unique identifier for the record. | |
| ExternalId | String | False |
External ID from another system. | |
| ValidatedFromAddress | String | False |
Field containing ValidatedFromAddress information. | |
| ToAddress | String | False |
Field containing ToAddress information. | |
| CcAddress | String | False |
Field containing CcAddress information. | |
| BccAddress | String | False |
Field containing BccAddress information. | |
| Subject | String | False |
Subject or title of the activity. | |
| TextBody | String | False |
Field containing TextBody information. | |
| HtmlBody | String | False |
Field containing HtmlBody information. | |
| RelatedToId | String | False |
ID of the RelatedTo associated with this record. | |
| RelatedToIdType | String | False |
Specifies the type of the 'RelatedToId' polymorphic field to use in the statement. | |
| RelatedToIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedToId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| WhoId | String | False |
ID of the Who associated with this record. | |
| WhoIdType | String | False |
Specifies the type of the 'WhoId' polymorphic field to use in the statement. | |
| WhoIdExternalFieldName | String | False |
Specifies the external field name of the 'WhoId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| EmailTemplateId | String | False |
ID of the EmailTemplate associated with this record. | |
| EmailTemplateIdType | String | False |
Specifies the type of the 'EmailTemplateId' polymorphic field to use in the statement. | |
| EmailTemplateIdExternalFieldName | String | False |
Specifies the external field name of the 'EmailTemplateId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| InReplyTo | String | False |
Field containing InReplyTo information. | |
| References | String | False |
Field containing References information. | |
| MessageId | String | False |
ID of the Message associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for OutgoingEmailRelation.
| Name | Type | ReadOnly | References | Description |
| Id | String | True |
Unique identifier for the record. | |
| ExternalId | String | False |
External ID from another system. | |
| OutgoingEmailId | String | False |
ID of the OutgoingEmail associated with this record. | |
| RelationId | String | False |
ID of the Relation associated with this record. | |
| RelationIdType | String | False |
Specifies the type of the 'RelationId' polymorphic field to use in the statement. | |
| RelationIdExternalFieldName | String | False |
Specifies the external field name of the 'RelationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| RelationAddress | String | False |
Field containing RelationAddress information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for PardotTenant.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| InitialPardotAdminId | String | False |
User.Id |
ID of the InitialPardotAdmin associated with this record. |
| CreationStatus | String | False |
Status of the Creation. | |
| DeleteOn | Date | True |
Field containing DeleteOn information. | |
| PardotTenantId | String | True |
ID of the PardotTenant associated with this record. | |
| PardotTenantName | String | False |
Field containing PardotTenantName information. | |
| PardotTenantAccountType | String | True |
Type classification for PardotTenantAccount. | |
| PardotTenantEnvironment | String | True |
Field containing PardotTenantEnvironment information. | |
| PardotTenantStatusCode | String | True |
Field containing PardotTenantStatusCode information. | |
| PardotGdotTenantKey | String | True |
Field containing PardotGdotTenantKey information. | |
| CdpEnablementStatus | String | True |
Status of the CdpEnablement. | |
| IsEinsteinAssistantEnabled | Bool | True |
Indicates whether the record has the EinsteinAssistantEnabled characteristic. | |
| IsContentConvergenceEnabled | Bool | False |
Indicates whether the record has the ContentConvergenceEnabled characteristic. | |
| ContentConvergenceWorkspace | String | False |
Field containing ContentConvergenceWorkspace information. | |
| ConsentAlignmentStatus | String | True |
Status of the ConsentAlignment. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Tracks business partner relationships, linking them to accounts and opportunities.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the partner relationship record. | |
| OpportunityId | String | False |
Opportunity.Id |
ID of the related opportunity associated with the partner. |
| AccountFromId | String | False |
Account.Id |
ID of the account initiating the partnership. |
| AccountToId | String | False |
Account.Id |
ID of the partner account receiving the partnership. |
| Role | String | False |
Role assigned to the partner in the context of the opportunity. | |
| IsPrimary | Bool | False |
Indicates whether this is the primary partner for the opportunity. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the partner record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the partner record. |
| IsDeleted | Bool | True |
Indicates whether the partner record has been deleted. | |
| ReversePartnerId | String | True |
Partner.Id |
ID of the corresponding reverse partner record for bidirectional relationships. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System timestamp for the most recent update to the partner record. | |
| LastModifiedDate | Datetime | True |
Date and time when the partner record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the partner record was created. |
Schema file for PartyConsent.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PartyId | String | False |
Individual.Id |
ID of the Party associated with this record. |
| Action | String | False |
Field containing Action information. | |
| PrivacyConsentStatus | String | False |
Status of the PrivacyConsent. | |
| CaptureDate | Datetime | False |
Date associated with Capture. | |
| CaptureContactPointType | String | False |
Type classification for CaptureContactPoint. | |
| CaptureSource | String | False |
Field containing CaptureSource information. | |
| PartyRoleId | String | False |
ID of the PartyRole associated with this record. | |
| PartyRoleIdType | String | False |
Specifies the type of the 'PartyRoleId' polymorphic field to use in the statement. | |
| PartyRoleIdExternalFieldName | String | False |
Specifies the external field name of the 'PartyRoleId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BusinessBrandId | String | False |
ID of the BusinessBrand associated with this record. | |
| DataUsePurposeId | String | False |
ID of the DataUsePurpose associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PartyConsentFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
PartyConsent.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for Payment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| PaymentNumber | String | True |
Payment identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PaymentGroupId | String | False |
PaymentGroup.Id |
ID of the PaymentGroup associated with this record. |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| PaymentAuthorizationId | String | False |
ID of the PaymentAuthorization associated with this record. | |
| Date | Datetime | False |
Date associated with . | |
| CancellationDate | Datetime | False |
Indicates whether the user or record can perform cellationDate action. | |
| Amount | Decimal | False |
Estimated total sale amount. | |
| Status | String | False |
Status of the record. | |
| Type | String | False |
Type of account or classification. | |
| ProcessingMode | String | False |
Mode used for processing the payment. | |
| GatewayRefNumber | String | False |
GatewayRef identification number. | |
| ClientContext | String | True |
Field containing ClientContext information. | |
| GatewayResultCode | String | False |
Result code returned by the payment gateway. | |
| SfResultCode | String | False |
Salesforce-specific result code for the transaction. | |
| GatewayDate | Datetime | False |
Date associated with Gateway. | |
| CancellationGatewayRefNumber | String | False |
Indicates whether the user or record can perform cellationGatewayRefNumber action. | |
| CancellationGatewayResultCode | String | False |
Indicates whether the user or record can perform cellationGatewayResultCode action. | |
| CancellationSfResultCode | String | False |
Indicates whether the user or record can perform cellationSfResultCode action. | |
| CancellationGatewayDate | Datetime | False |
Indicates whether the user or record can perform cellationGatewayDate action. | |
| Comments | String | False |
Field containing Comments information. | |
| EffectiveDate | Datetime | False |
Date associated with Effective. | |
| CancellationEffectiveDate | Datetime | False |
Indicates whether the user or record can perform cellationEffectiveDate action. | |
| GatewayResultCodeDescription | String | False |
Field containing GatewayResultCodeDescription information. | |
| GatewayRefDetails | String | False |
Field containing GatewayRefDetails information. | |
| OrderPaymentSummaryId | String | False |
ID of the OrderPaymentSummary associated with this record. | |
| IpAddress | String | False |
Field containing IpAddress information. | |
| MacAddress | String | False |
Field containing MacAddress information. | |
| Phone | String | False |
Phone number for the contact or account. | |
| String | False |
Email address for the contact or person account. | ||
| PaymentGatewayId | String | False |
ID of the PaymentGateway associated with this record. | |
| PaymentMethodId | String | False |
ID of the payment method used. | |
| TotalApplied | Decimal | True |
Field containing TotalApplied information. | |
| TotalUnapplied | Decimal | True |
Field containing TotalUnapplied information. | |
| NetApplied | Decimal | True |
Field containing NetApplied information. | |
| Balance | Decimal | True |
Field containing Balance information. | |
| PaymentIntentGuid | String | False |
ID of the PaymentIntentGu associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PaymentAuthAdjustment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| PaymentAuthAdjustmentNumber | String | True |
PaymentAuthAdjustment identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PaymentAuthorizationId | String | False |
ID of the PaymentAuthorization associated with this record. | |
| ProcessingMode | String | False |
Mode used for processing the payment. | |
| Amount | Decimal | False |
Estimated total sale amount. | |
| Status | String | False |
Status of the record. | |
| Type | String | False |
Type of account or classification. | |
| Date | Datetime | False |
Date associated with . | |
| GatewayDate | Datetime | False |
Date associated with Gateway. | |
| EffectiveDate | Datetime | False |
Date associated with Effective. | |
| Comments | String | False |
Field containing Comments information. | |
| GatewayRefNumber | String | False |
GatewayRef identification number. | |
| GatewayResultCode | String | False |
Result code returned by the payment gateway. | |
| SfResultCode | String | False |
Salesforce-specific result code for the transaction. | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| GatewayRefDetails | String | False |
Field containing GatewayRefDetails information. | |
| GatewayResultCodeDescription | String | False |
Field containing GatewayResultCodeDescription information. | |
| IpAddress | String | False |
Field containing IpAddress information. | |
| MacAddress | String | False |
Field containing MacAddress information. | |
| Phone | String | False |
Phone number for the contact or account. | |
| String | False |
Email address for the contact or person account. | ||
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PaymentAuthorization.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| PaymentAuthorizationNumber | String | True |
PaymentAuthorization identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PaymentGroupId | String | False |
PaymentGroup.Id |
ID of the PaymentGroup associated with this record. |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| Date | Datetime | False |
Date associated with . | |
| GatewayDate | Datetime | False |
Date associated with Gateway. | |
| ExpirationDate | Datetime | False |
Date associated with Expiration. | |
| EffectiveDate | Datetime | False |
Date associated with Effective. | |
| Amount | Decimal | False |
Estimated total sale amount. | |
| Status | String | False |
Status of the record. | |
| ProcessingMode | String | False |
Mode used for processing the payment. | |
| PaymentMethodId | String | False |
ID of the payment method used. | |
| Comments | String | False |
Field containing Comments information. | |
| GatewayRefDetails | String | False |
Field containing GatewayRefDetails information. | |
| GatewayRefNumber | String | False |
GatewayRef identification number. | |
| GatewayResultCode | String | False |
Result code returned by the payment gateway. | |
| SfResultCode | String | False |
Salesforce-specific result code for the transaction. | |
| GatewayAuthCode | String | False |
Field containing GatewayAuthCode information. | |
| GatewayResultCodeDescription | String | False |
Field containing GatewayResultCodeDescription information. | |
| Balance | Decimal | True |
Field containing Balance information. | |
| TotalPaymentCaptureAmount | Decimal | True |
Field containing TotalPaymentCaptureAmount information. | |
| IpAddress | String | False |
Field containing IpAddress information. | |
| MacAddress | String | False |
Field containing MacAddress information. | |
| Phone | String | False |
Phone number for the contact or account. | |
| String | False |
Email address for the contact or person account. | ||
| PaymentGatewayId | String | False |
ID of the PaymentGateway associated with this record. | |
| OrderPaymentSummaryId | String | False |
ID of the OrderPaymentSummary associated with this record. | |
| PaymentIntentGuid | String | False |
ID of the PaymentIntentGu associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PaymentFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
Payment.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for PaymentGateway.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| PaymentGatewayName | String | False |
Field containing PaymentGatewayName information. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PaymentGatewayProviderId | String | False |
ID of the PaymentGatewayProvider associated with this record. | |
| MerchantCredentialId | String | False |
ID of the MerchantCredential associated with this record. | |
| Status | String | False |
Status of the record. | |
| Comments | String | False |
Field containing Comments information. | |
| ExternalReference | String | False |
Field containing ExternalReference information. | |
| DefaultTapToPayLocation | String | True |
Field containing DefaultTapToPayLocation information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PaymentGatewayLog.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| PaymentGatewayLogNumber | String | True |
PaymentGatewayLog identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ReferencedEntityId | String | False |
ID of the ReferencedEntity associated with this record. | |
| ReferencedEntityIdType | String | False |
Specifies the type of the 'ReferencedEntityId' polymorphic field to use in the statement. | |
| ReferencedEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'ReferencedEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| InteractionType | String | False |
Type classification for Interaction. | |
| SfRefNumber | String | False |
SfRef identification number. | |
| InteractionStatus | String | False |
Status of the Interaction. | |
| GatewayAuthCode | String | False |
Field containing GatewayAuthCode information. | |
| GatewayRefNumber | String | False |
GatewayRef identification number. | |
| SfResultCode | String | False |
Salesforce-specific result code for the transaction. | |
| GatewayResultCode | String | False |
Result code returned by the payment gateway. | |
| GatewayResultCodeDescription | String | False |
Field containing GatewayResultCodeDescription information. | |
| GatewayDate | Datetime | False |
Date associated with Gateway. | |
| GatewayMessage | String | False |
Field containing GatewayMessage information. | |
| GatewayAvsCode | String | False |
Field containing GatewayAvsCode information. | |
| PaymentGatewayId | String | False |
ID of the PaymentGateway associated with this record. | |
| OrderPaymentSummaryId | String | False |
ID of the OrderPaymentSummary associated with this record. | |
| IsNotification | String | False |
Indicates whether the record has the Notification characteristic. | |
| Request | String | False |
Field containing Request information. | |
| Response | String | False |
Field containing Response information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PaymentGatewayProvider.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| ApexAdapterId | String | False |
ApexClass.Id |
ID of the ApexAdapter associated with this record. |
| Comments | String | False |
Field containing Comments information. | |
| IdempotencySupported | String | False |
Field containing IdempotencySupported information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PaymentGroup.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| PaymentGroupNumber | String | True |
PaymentGroup identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SourceObjectId | String | False |
Order.Id |
ID of the SourceObject associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PaymentLineInvoice.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| PaymentLineInvoiceNumber | String | True |
PaymentLineInvoice identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| InvoiceId | String | False |
Invoice.Id |
ID of the Invoice associated with this record. |
| PaymentId | String | False |
Payment.Id |
ID of the Payment associated with this record. |
| Amount | Decimal | False |
Estimated total sale amount. | |
| Type | String | False |
Type of account or classification. | |
| HasBeenUnapplied | String | False |
Indicates whether the record has BeenUnapplied. | |
| Comments | String | False |
Field containing Comments information. | |
| Date | Datetime | False |
Date associated with . | |
| AppliedDate | Datetime | False |
Date associated with Applied. | |
| EffectiveDate | Datetime | False |
Date associated with Effective. | |
| UnappliedDate | Datetime | False |
Date associated with Unapplied. | |
| AssociatedAccountId | String | False |
Account.Id |
ID of the AssociatedAccount associated with this record. |
| AssociatedPaymentLineId | String | False |
ID of the AssociatedPaymentLine associated with this record. | |
| PaymentBalance | Decimal | True |
Field containing PaymentBalance information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Manages permission sets that grant additional access and security permissions to users.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the PermissionSet. | |
| Name | String | False |
API name of the permission set. | |
| Label | String | False |
Display label of the permission set. | |
| LicenseId | String | False |
ID of the License associated with this record. | |
| LicenseIdType | String | False |
Specifies the type of the 'LicenseId' polymorphic field to use in the statement. | |
| LicenseIdExternalFieldName | String | False |
Specifies the external field name of the 'LicenseId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ProfileId | String | True |
Profile.Id |
Identifier of the profile associated with the permission set. |
| IsOwnedByProfile | Bool | True |
Indicates whether the permission set is owned by a profile. | |
| IsCustom | Bool | True |
Indicates whether the record has the Custom characteristic. | |
| PermissionsEmailSingle | Bool | False |
Grants the ability to send single emails. | |
| PermissionsEmailMass | Bool | False |
Grants the ability to send mass emails. | |
| PermissionsEditTask | Bool | False |
Grants the ability to create, edit, and delete tasks. | |
| PermissionsEditEvent | Bool | False |
Grants the ability to create, edit, and delete calendar events. | |
| PermissionsExportReport | Bool | False |
Grants the ability to export report data. | |
| PermissionsImportPersonal | Bool | False |
Grants the ability to import personal contacts. | |
| PermissionsDataExport | Bool | False |
Field containing PermissionsDataExport information. | |
| PermissionsManageUsers | Bool | False |
Grants full access to manage user accounts and related settings. | |
| PermissionsEditPublicFilters | Bool | False |
Field containing PermissionsEditPublicFilters information. | |
| PermissionsEditPublicTemplates | Bool | False |
Grants the ability to edit public templates. | |
| PermissionsModifyAllData | Bool | False |
Grants full access to all organization data, regardless of sharing rules. | |
| PermissionsEditBillingInfo | Bool | False |
Field containing PermissionsEditBillingInfo information. | |
| PermissionsManageCases | Bool | False |
Grants access to manage support cases. | |
| PermissionsMassInlineEdit | Bool | False |
Field containing PermissionsMassInlineEdit information. | |
| PermissionsEditKnowledge | Bool | False |
Grants the ability to manage individual knowledge articles. | |
| PermissionsManageKnowledge | Bool | False |
Grants administrative access to Salesforce Knowledge settings and articles. | |
| PermissionsManageSolutions | Bool | False |
Grants access to manage published solutions. | |
| PermissionsCustomizeApplication | Bool | False |
Grants the ability to customize applications, such as editing tabs or page layouts. | |
| PermissionsEditReadonlyFields | Bool | False |
Grants the ability to edit read-only fields in the UI. | |
| PermissionsRunReports | Bool | False |
Grants access to run reports. | |
| PermissionsViewSetup | Bool | False |
Grants access to view setup and configuration pages. | |
| PermissionsTransferAnyEntity | Bool | False |
Grants the ability to transfer ownership of all record types. | |
| PermissionsNewReportBuilder | Bool | False |
Grants access to the enhanced report builder. | |
| PermissionsActivateContract | Bool | False |
Grants permission to activate contracts. | |
| PermissionsActivateOrder | Bool | False |
Field containing PermissionsActivateOrder information. | |
| PermissionsImportLeads | Bool | False |
Grants permission to import lead records. | |
| PermissionsManageLeads | Bool | False |
Grants permission to manage lead records. | |
| PermissionsTransferAnyLead | Bool | False |
Grants the ability to transfer ownership of any lead. | |
| PermissionsViewAllData | Bool | False |
Grants read access to all organization data, bypassing sharing settings. | |
| PermissionsEditPublicDocuments | Bool | False |
Grants access to edit public documents. | |
| PermissionsViewEncryptedData | Bool | False |
Field containing PermissionsViewEncryptedData information. | |
| PermissionsEditBrandTemplates | Bool | False |
Grants access to manage brand templates such as letterheads. | |
| PermissionsEditHtmlTemplates | Bool | False |
Grants access to create and edit HTML email templates. | |
| PermissionsChatterInternalUser | Bool | False |
Identifies the user as an internal Chatter user. | |
| PermissionsManageEncryptionKeys | Bool | False |
Field containing PermissionsManageEncryptionKeys information. | |
| PermissionsDeleteActivatedContract | Bool | False |
Grants permission to delete activated contracts. | |
| PermissionsChatterInviteExternalUsers | Bool | False |
Grants the ability to invite external users to Chatter. | |
| PermissionsSendSitRequests | Bool | False |
Grants the ability to send Stay-in-Touch requests. | |
| PermissionsApiUserOnly | Bool | False |
Field containing PermissionsApiUserOnly information. | |
| PermissionsManageRemoteAccess | Bool | False |
Grants access to manage connected apps and remote access settings. | |
| PermissionsCanUseNewDashboardBuilder | Bool | False |
Grants access to use the drag-and-drop dashboard builder. | |
| PermissionsManageCategories | Bool | False |
Grants access to manage data categories and category groups. | |
| PermissionsConvertLeads | Bool | False |
Grants the ability to convert leads into accounts, contacts, and opportunities. | |
| PermissionsPasswordNeverExpires | Bool | False |
Prevents the user's password from expiring. | |
| PermissionsUseTeamReassignWizards | Bool | False |
Grants access to the team reassignment wizards for accounts and opportunities. | |
| PermissionsEditActivatedOrders | Bool | False |
Field containing PermissionsEditActivatedOrders information. | |
| PermissionsInstallPackaging | Bool | False |
Grants permission to install packages from the AppExchange. | |
| PermissionsPublishPackaging | Bool | False |
Grants permission to publish packages to the AppExchange. | |
| PermissionsChatterOwnGroups | Bool | False |
Grants the ability to create and own Chatter groups. | |
| PermissionsEditOppLineItemUnitPrice | Bool | False |
Grants the ability to edit the unit price on opportunity line items. | |
| PermissionsManageTerritories | Bool | False |
Field containing PermissionsManageTerritories information. | |
| PermissionsCreatePackaging | Bool | False |
Grants permission to create AppExchange packages. | |
| PermissionsBulkApiHardDelete | Bool | False |
Grants the ability to perform hard deletes using the Bulk API. | |
| PermissionsSolutionImport | Bool | False |
Grants the ability to import solutions into the system. | |
| PermissionsManageCallCenters | Bool | False |
Grants access to manage call center configurations. | |
| PermissionsManageSynonyms | Bool | False |
Grants access to manage synonyms used in search. | |
| PermissionsViewContent | Bool | False |
Grants the ability to view content in portals. | |
| PermissionsManageEmailClientConfig | Bool | False |
Grants the ability to manage email client configurations. | |
| PermissionsEnableNotifications | Bool | False |
Grants the ability to send outbound messages from workflow rules. | |
| PermissionsIsSsoEnabled | Bool | False |
Field containing PermissionsIsSsoEnabled information. | |
| PermissionsManageDataIntegrations | Bool | False |
Grants access to manage external data integrations. | |
| PermissionsDistributeFromPersWksp | Bool | False |
Field containing PermissionsDistributeFromPersWksp information. | |
| PermissionsViewDataCategories | Bool | False |
Grants the ability to view data categories and category groups. | |
| PermissionsManageDataCategories | Bool | False |
Grants the ability to manage data categories and category groups. | |
| PermissionsAuthorApex | Bool | False |
Grants the ability to write and edit Apex code. | |
| PermissionsManageMobile | Bool | False |
Grants access to manage mobile configurations and settings. | |
| PermissionsApiEnabled | Bool | False |
Enables API access for the user. | |
| PermissionsManageCustomReportTypes | Bool | False |
Grants access to create and manage custom report types. | |
| PermissionsEditCaseComments | Bool | False |
Grants the ability to edit comments on cases. | |
| PermissionsTransferAnyCase | Bool | False |
Grants the ability to transfer ownership of any case. | |
| PermissionsContentAdministrator | Bool | False |
Grants administrative access to Salesforce Customer Relationship Management (CRM) Content. | |
| PermissionsCreateWorkspaces | Bool | False |
Grants the ability to create content libraries (workspaces). | |
| PermissionsManageContentPermissions | Bool | False |
Grants the ability to manage user permissions on content libraries. | |
| PermissionsManageContentProperties | Bool | False |
Grants access to manage custom properties for content. | |
| PermissionsManageContentTypes | Bool | False |
Grants access to create and manage content types. | |
| PermissionsManageExchangeConfig | Bool | False |
Field containing PermissionsManageExchangeConfig information. | |
| PermissionsManageAnalyticSnapshots | Bool | False |
Grants the ability to manage analytic snapshots (scheduled reports). | |
| PermissionsScheduleReports | Bool | False |
Grants permission to schedule reports for future delivery. | |
| PermissionsManageBusinessHourHolidays | Bool | False |
Grants access to manage business hours and holidays. | |
| PermissionsManageEntitlements | Bool | False |
Field containing PermissionsManageEntitlements information. | |
| PermissionsManageDynamicDashboards | Bool | False |
Grants permission to manage dynamic dashboards. | |
| PermissionsCustomSidebarOnAllPages | Bool | False |
Grants the ability to show custom sidebar components on all pages. | |
| PermissionsManageInteraction | Bool | False |
Grants access to manage Flow definitions and processes. | |
| PermissionsViewMyTeamsDashboards | Bool | False |
Grants the ability to view dashboards of users in the same team. | |
| PermissionsModerateChatter | Bool | False |
Grants the ability to moderate Chatter content, such as deleting posts. | |
| PermissionsResetPasswords | Bool | False |
Grants permission to reset user passwords and unlock users. | |
| PermissionsFlowUFLRequired | Bool | False |
Requires the user to have a Flow User license to run Flows. | |
| PermissionsCanInsertFeedSystemFields | Bool | False |
Grants the ability to insert system field values for Chatter feeds. | |
| PermissionsActivitiesAccess | Bool | False |
Field containing PermissionsActivitiesAccess information. | |
| PermissionsManageKnowledgeImportExport | Bool | False |
Grants access to import and export knowledge articles. | |
| PermissionsUseInboxSchedulingOnBehalfOf | Bool | False |
Field containing PermissionsUseInboxSchedulingOnBehalfOf information. | |
| PermissionsEmailTemplateManagement | Bool | False |
Grants permission to manage and edit email templates. | |
| PermissionsEmailAdministration | Bool | False |
Grants access to administer email settings and configurations. | |
| PermissionsDeleteEventMonitoringData | Bool | False |
Field containing PermissionsDeleteEventMonitoringData information. | |
| PermissionsManageChatterMessages | Bool | False |
Grants the ability to manage private Chatter messages. | |
| PermissionsAllowEmailIC | Bool | False |
Field containing PermissionsAllowEmailIC information. | |
| PermissionsChatterFileLink | Bool | False |
Field containing PermissionsChatterFileLink information. | |
| PermissionsForceTwoFactor | Bool | False |
Enforces two-factor authentication for UI logins. | |
| PermissionsViewEventLogFiles | Bool | False |
Field containing PermissionsViewEventLogFiles information. | |
| PermissionsManageNetworks | Bool | False |
Grants access to create and configure Communities. | |
| PermissionsManageAuthProviders | Bool | False |
Grants access to manage authentication providers. | |
| PermissionsRunFlow | Bool | False |
Grants the ability to run Flows. | |
| PermissionsCreateCustomizeDashboards | Bool | False |
Field containing PermissionsCreateCustomizeDashboards information. | |
| PermissionsCreateDashboardFolders | Bool | False |
Field containing PermissionsCreateDashboardFolders information. | |
| PermissionsViewPublicDashboards | Bool | False |
Field containing PermissionsViewPublicDashboards information. | |
| PermissionsManageDashbdsInPubFolders | Bool | False |
Field containing PermissionsManageDashbdsInPubFolders information. | |
| PermissionsCreateCustomizeReports | Bool | False |
Field containing PermissionsCreateCustomizeReports information. | |
| PermissionsCreateReportFolders | Bool | False |
Field containing PermissionsCreateReportFolders information. | |
| PermissionsViewPublicReports | Bool | False |
Field containing PermissionsViewPublicReports information. | |
| PermissionsManageReportsInPubFolders | Bool | False |
Field containing PermissionsManageReportsInPubFolders information. | |
| PermissionsEditMyDashboards | Bool | False |
Field containing PermissionsEditMyDashboards information. | |
| PermissionsEditMyReports | Bool | False |
Field containing PermissionsEditMyReports information. | |
| PermissionsDeleteFieldHistoryArchive | Bool | False |
Field containing PermissionsDeleteFieldHistoryArchive information. | |
| PermissionsViewAllUsers | Bool | False |
Grants visibility into all user records in the organization. | |
| PermissionsAllowUniversalSearch | Bool | False |
Grants access to global search features such as Knowledge One. | |
| PermissionsConnectOrgToEnvironmentHub | Bool | False |
Grants the ability to connect the org to the Environment Hub. | |
| PermissionsWorkCalibrationUser | Bool | False |
Field containing PermissionsWorkCalibrationUser information. | |
| PermissionsCreateCustomizeFilters | Bool | False |
Field containing PermissionsCreateCustomizeFilters information. | |
| PermissionsWorkDotComUserPerm | Bool | False |
Field containing PermissionsWorkDotComUserPerm information. | |
| PermissionsContentHubUser | Bool | False |
Field containing PermissionsContentHubUser information. | |
| PermissionsGovernNetworks | Bool | False |
Field containing PermissionsGovernNetworks information. | |
| PermissionsSalesConsole | Bool | False |
Grants access to the Sales Console app. | |
| PermissionsTwoFactorApi | Bool | False |
Enforces two-factor authentication for API logins. | |
| PermissionsDeleteTopics | Bool | False |
Grants the ability to delete topics used in Chatter. | |
| PermissionsEditTopics | Bool | False |
Grants the ability to edit topics in Chatter. | |
| PermissionsCreateTopics | Bool | False |
Grants the ability to create new topics in Chatter. | |
| PermissionsAssignTopics | Bool | False |
Grants the ability to assign topics to records. | |
| PermissionsIdentityEnabled | Bool | False |
Grants access to Salesforce Identity features. | |
| PermissionsIdentityConnect | Bool | False |
Grants access to use Identity Connect for identity federation. | |
| PermissionsAllowViewKnowledge | Bool | False |
Grants access to view knowledge articles. | |
| PermissionsContentWorkspaces | Bool | False |
Field containing PermissionsContentWorkspaces information. | |
| PermissionsManageSearchPromotionRules | Bool | False |
Field containing PermissionsManageSearchPromotionRules information. | |
| PermissionsCustomMobileAppsAccess | Bool | False |
Field containing PermissionsCustomMobileAppsAccess information. | |
| PermissionsViewHelpLink | Bool | False |
Field containing PermissionsViewHelpLink information. | |
| PermissionsManageProfilesPermissionsets | Bool | False |
Field containing PermissionsManageProfilesPermissionsets information. | |
| PermissionsAssignPermissionSets | Bool | False |
Field containing PermissionsAssignPermissionSets information. | |
| PermissionsManageRoles | Bool | False |
Field containing PermissionsManageRoles information. | |
| PermissionsManageIpAddresses | Bool | False |
Field containing PermissionsManageIpAddresses information. | |
| PermissionsManageSharing | Bool | False |
Field containing PermissionsManageSharing information. | |
| PermissionsManageInternalUsers | Bool | False |
Field containing PermissionsManageInternalUsers information. | |
| PermissionsManagePasswordPolicies | Bool | False |
Field containing PermissionsManagePasswordPolicies information. | |
| PermissionsManageLoginAccessPolicies | Bool | False |
Field containing PermissionsManageLoginAccessPolicies information. | |
| PermissionsViewPlatformEvents | Bool | False |
Field containing PermissionsViewPlatformEvents information. | |
| PermissionsManageCustomPermissions | Bool | False |
Field containing PermissionsManageCustomPermissions information. | |
| PermissionsCanVerifyComment | Bool | False |
Field containing PermissionsCanVerifyComment information. | |
| PermissionsManageUnlistedGroups | Bool | False |
Field containing PermissionsManageUnlistedGroups information. | |
| PermissionsStdAutomaticActivityCapture | Bool | False |
Field containing PermissionsStdAutomaticActivityCapture information. | |
| PermissionsFreezeUsers | Bool | False |
Field containing PermissionsFreezeUsers information. | |
| PermissionsInsightsAppDashboardEditor | Bool | False |
Field containing PermissionsInsightsAppDashboardEditor information. | |
| PermissionsManageTwoFactor | Bool | False |
Field containing PermissionsManageTwoFactor information. | |
| PermissionsInsightsAppUser | Bool | False |
Field containing PermissionsInsightsAppUser information. | |
| PermissionsInsightsAppAdmin | Bool | False |
Field containing PermissionsInsightsAppAdmin information. | |
| PermissionsInsightsAppEltEditor | Bool | False |
Field containing PermissionsInsightsAppEltEditor information. | |
| PermissionsInsightsAppUploadUser | Bool | False |
Field containing PermissionsInsightsAppUploadUser information. | |
| PermissionsInsightsCreateApplication | Bool | False |
Field containing PermissionsInsightsCreateApplication information. | |
| PermissionsLightningExperienceUser | Bool | False |
Field containing PermissionsLightningExperienceUser information. | |
| PermissionsViewDataLeakageEvents | Bool | False |
Field containing PermissionsViewDataLeakageEvents information. | |
| PermissionsConfigCustomRecs | Bool | False |
Field containing PermissionsConfigCustomRecs information. | |
| PermissionsSubmitMacrosAllowed | Bool | False |
Field containing PermissionsSubmitMacrosAllowed information. | |
| PermissionsBulkMacrosAllowed | Bool | False |
Field containing PermissionsBulkMacrosAllowed information. | |
| PermissionsShareInternalArticles | Bool | False |
Field containing PermissionsShareInternalArticles information. | |
| PermissionsManageSessionPermissionSets | Bool | False |
Field containing PermissionsManageSessionPermissionSets information. | |
| PermissionsManageTemplatedApp | Bool | False |
Field containing PermissionsManageTemplatedApp information. | |
| PermissionsUseTemplatedApp | Bool | False |
Field containing PermissionsUseTemplatedApp information. | |
| PermissionsSendAnnouncementEmails | Bool | False |
Field containing PermissionsSendAnnouncementEmails information. | |
| PermissionsChatterEditOwnPost | Bool | False |
Field containing PermissionsChatterEditOwnPost information. | |
| PermissionsChatterEditOwnRecordPost | Bool | False |
Field containing PermissionsChatterEditOwnRecordPost information. | |
| PermissionsWaveTabularDownload | Bool | False |
Field containing PermissionsWaveTabularDownload information. | |
| PermissionsWaveCommunityUser | Bool | False |
Field containing PermissionsWaveCommunityUser information. | |
| PermissionsAutomaticActivityCapture | Bool | False |
Field containing PermissionsAutomaticActivityCapture information. | |
| PermissionsImportCustomObjects | Bool | False |
Field containing PermissionsImportCustomObjects information. | |
| PermissionsSalesforceIQInbox | Bool | False |
Field containing PermissionsSalesforceIQInbox information. | |
| PermissionsDelegatedTwoFactor | Bool | False |
Field containing PermissionsDelegatedTwoFactor information. | |
| PermissionsChatterComposeUiCodesnippet | Bool | False |
Field containing PermissionsChatterComposeUiCodesnippet information. | |
| PermissionsSelectFilesFromSalesforce | Bool | False |
Field containing PermissionsSelectFilesFromSalesforce information. | |
| PermissionsModerateNetworkUsers | Bool | False |
Field containing PermissionsModerateNetworkUsers information. | |
| PermissionsMergeTopics | Bool | False |
Field containing PermissionsMergeTopics information. | |
| PermissionsSubscribeToLightningReports | Bool | False |
Field containing PermissionsSubscribeToLightningReports information. | |
| PermissionsManagePvtRptsAndDashbds | Bool | False |
Field containing PermissionsManagePvtRptsAndDashbds information. | |
| PermissionsAllowLightningLogin | Bool | False |
Field containing PermissionsAllowLightningLogin information. | |
| PermissionsLeadScoreUser | Bool | False |
Field containing PermissionsLeadScoreUser information. | |
| PermissionsCampaignInfluence2 | Bool | False |
Field containing PermissionsCampaignInfluence2 information. | |
| PermissionsViewDataAssessment | Bool | False |
Field containing PermissionsViewDataAssessment information. | |
| PermissionsRemoveDirectMessageMembers | Bool | False |
Field containing PermissionsRemoveDirectMessageMembers information. | |
| PermissionsCanApproveFeedPost | Bool | False |
Field containing PermissionsCanApproveFeedPost information. | |
| PermissionsAddDirectMessageMembers | Bool | False |
Field containing PermissionsAddDirectMessageMembers information. | |
| PermissionsAllowViewEditConvertedLeads | Bool | False |
Field containing PermissionsAllowViewEditConvertedLeads information. | |
| PermissionsShowCompanyNameAsUserBadge | Bool | False |
Field containing PermissionsShowCompanyNameAsUserBadge information. | |
| PermissionsAccessCMC | Bool | False |
Field containing PermissionsAccessCMC information. | |
| PermissionsViewHealthCheck | Bool | False |
Field containing PermissionsViewHealthCheck information. | |
| PermissionsManageHealthCheck | Bool | False |
Field containing PermissionsManageHealthCheck information. | |
| PermissionsPackaging2 | Bool | False |
Field containing PermissionsPackaging2 information. | |
| PermissionsManageCertificates | Bool | False |
Field containing PermissionsManageCertificates information. | |
| PermissionsCreateReportInLightning | Bool | False |
Field containing PermissionsCreateReportInLightning information. | |
| PermissionsPreventClassicExperience | Bool | False |
Field containing PermissionsPreventClassicExperience information. | |
| PermissionsHideReadByList | Bool | False |
Field containing PermissionsHideReadByList information. | |
| PermissionsDeleteFieldHistory | Bool | False |
Field containing PermissionsDeleteFieldHistory information. | |
| PermissionsListEmailSend | Bool | False |
Field containing PermissionsListEmailSend information. | |
| PermissionsFeedPinning | Bool | False |
Field containing PermissionsFeedPinning information. | |
| PermissionsChangeDashboardColors | Bool | False |
Field containing PermissionsChangeDashboardColors information. | |
| PermissionsManageRecommendationStrategies | Bool | False |
Field containing PermissionsManageRecommendationStrategies information. | |
| PermissionsManagePropositions | Bool | False |
Field containing PermissionsManagePropositions information. | |
| PermissionsCloseConversations | Bool | False |
Field containing PermissionsCloseConversations information. | |
| PermissionsSubscribeReportRolesGrps | Bool | False |
Field containing PermissionsSubscribeReportRolesGrps information. | |
| PermissionsSubscribeDashboardRolesGrps | Bool | False |
Field containing PermissionsSubscribeDashboardRolesGrps information. | |
| PermissionsUseWebLink | Bool | False |
Field containing PermissionsUseWebLink information. | |
| PermissionsHasUnlimitedNBAExecutions | Bool | False |
Field containing PermissionsHasUnlimitedNBAExecutions information. | |
| PermissionsViewOnlyEmbeddedAppUser | Bool | False |
Field containing PermissionsViewOnlyEmbeddedAppUser information. | |
| PermissionsViewAllActivities | Bool | False |
Field containing PermissionsViewAllActivities information. | |
| PermissionsSubscribeReportToOtherUsers | Bool | False |
Field containing PermissionsSubscribeReportToOtherUsers information. | |
| PermissionsLightningConsoleAllowedForUser | Bool | False |
Field containing PermissionsLightningConsoleAllowedForUser information. | |
| PermissionsSubscribeReportsRunAsUser | Bool | False |
Field containing PermissionsSubscribeReportsRunAsUser information. | |
| PermissionsSubscribeToLightningDashboards | Bool | False |
Field containing PermissionsSubscribeToLightningDashboards information. | |
| PermissionsSubscribeDashboardToOtherUsers | Bool | False |
Field containing PermissionsSubscribeDashboardToOtherUsers information. | |
| PermissionsPardotUser | Bool | False |
Field containing PermissionsPardotUser information. | |
| PermissionsCreateLtngTempInPub | Bool | False |
Field containing PermissionsCreateLtngTempInPub information. | |
| PermissionsTransactionalEmailSend | Bool | False |
Field containing PermissionsTransactionalEmailSend information. | |
| PermissionsViewPrivateStaticResources | Bool | False |
Field containing PermissionsViewPrivateStaticResources information. | |
| PermissionsCreateLtngTempFolder | Bool | False |
Field containing PermissionsCreateLtngTempFolder information. | |
| PermissionsApexRestServices | Bool | False |
Field containing PermissionsApexRestServices information. | |
| PermissionsEnableCommunityAppLauncher | Bool | False |
Field containing PermissionsEnableCommunityAppLauncher information. | |
| PermissionsGiveRecognitionBadge | Bool | False |
Field containing PermissionsGiveRecognitionBadge information. | |
| PermissionsSalesforceIQInternal | Bool | False |
Field containing PermissionsSalesforceIQInternal information. | |
| PermissionsUseMySearch | Bool | False |
Field containing PermissionsUseMySearch information. | |
| PermissionsLtngPromoReserved01UserPerm | Bool | False |
Field containing PermissionsLtngPromoReserved01UserPerm information. | |
| PermissionsManageSubscriptions | Bool | False |
Field containing PermissionsManageSubscriptions information. | |
| PermissionsWaveManagePrivateAssetsUser | Bool | False |
Field containing PermissionsWaveManagePrivateAssetsUser information. | |
| PermissionsCanEditDataPrepRecipe | Bool | False |
Field containing PermissionsCanEditDataPrepRecipe information. | |
| PermissionsAddAnalyticsRemoteConnections | Bool | False |
Field containing PermissionsAddAnalyticsRemoteConnections information. | |
| PermissionsManageSurveys | Bool | False |
Field containing PermissionsManageSurveys information. | |
| PermissionsUseAssistantDialog | Bool | False |
Field containing PermissionsUseAssistantDialog information. | |
| PermissionsUseQuerySuggestions | Bool | False |
Field containing PermissionsUseQuerySuggestions information. | |
| PermissionsRecordVisibilityAPI | Bool | False |
Field containing PermissionsRecordVisibilityAPI information. | |
| PermissionsViewRoles | Bool | False |
Field containing PermissionsViewRoles information. | |
| PermissionsCanManageMaps | Bool | False |
Field containing PermissionsCanManageMaps information. | |
| PermissionsLMOutboundMessagingUserPerm | Bool | False |
Field containing PermissionsLMOutboundMessagingUserPerm information. | |
| PermissionsModifyDataClassification | Bool | False |
Field containing PermissionsModifyDataClassification information. | |
| PermissionsPrivacyDataAccess | Bool | False |
Field containing PermissionsPrivacyDataAccess information. | |
| PermissionsQueryAllFiles | Bool | False |
Field containing PermissionsQueryAllFiles information. | |
| PermissionsModifyMetadata | Bool | False |
Field containing PermissionsModifyMetadata information. | |
| PermissionsManageCMS | Bool | False |
Field containing PermissionsManageCMS information. | |
| PermissionsSandboxTestingInCommunityApp | Bool | False |
Field containing PermissionsSandboxTestingInCommunityApp information. | |
| PermissionsCanEditPrompts | Bool | False |
Field containing PermissionsCanEditPrompts information. | |
| PermissionsViewUserPII | Bool | False |
Field containing PermissionsViewUserPII information. | |
| PermissionsManageHubConnections | Bool | False |
Field containing PermissionsManageHubConnections information. | |
| PermissionsB2BMarketingAnalyticsUser | Bool | False |
Field containing PermissionsB2BMarketingAnalyticsUser information. | |
| PermissionsTraceXdsQueries | Bool | False |
Field containing PermissionsTraceXdsQueries information. | |
| PermissionsViewSecurityCommandCenter | Bool | False |
Field containing PermissionsViewSecurityCommandCenter information. | |
| PermissionsManageSecurityCommandCenter | Bool | False |
Field containing PermissionsManageSecurityCommandCenter information. | |
| PermissionsViewAllCustomSettings | Bool | False |
Field containing PermissionsViewAllCustomSettings information. | |
| PermissionsViewAllForeignKeyNames | Bool | False |
Field containing PermissionsViewAllForeignKeyNames information. | |
| PermissionsAddWaveNotificationRecipients | Bool | False |
Field containing PermissionsAddWaveNotificationRecipients information. | |
| PermissionsHeadlessCMSAccess | Bool | False |
Field containing PermissionsHeadlessCMSAccess information. | |
| PermissionsUseOrderManagementAPIs | Bool | False |
Field containing PermissionsUseOrderManagementAPIs information. | |
| PermissionsEditUnmanagedOrderSummaries | Bool | False |
Field containing PermissionsEditUnmanagedOrderSummaries information. | |
| PermissionsLMEndMessagingSessionUserPerm | Bool | False |
Field containing PermissionsLMEndMessagingSessionUserPerm information. | |
| PermissionsConsentApiUpdate | Bool | False |
Date associated with PermissionsConsentApiUp. | |
| PermissionsPaymentsAPIUser | Bool | False |
Field containing PermissionsPaymentsAPIUser information. | |
| PermissionsAccessContentBuilder | Bool | False |
Field containing PermissionsAccessContentBuilder information. | |
| PermissionsAccountSwitcherUser | Bool | False |
Field containing PermissionsAccountSwitcherUser information. | |
| PermissionsViewAnomalyEvents | Bool | False |
Field containing PermissionsViewAnomalyEvents information. | |
| PermissionsManageC360AConnections | Bool | False |
Field containing PermissionsManageC360AConnections information. | |
| PermissionsManageReleaseUpdates | Bool | False |
Field containing PermissionsManageReleaseUpdates information. | |
| PermissionsViewAllProfiles | Bool | False |
Field containing PermissionsViewAllProfiles information. | |
| PermissionsSkipIdentityConfirmation | Bool | False |
Field containing PermissionsSkipIdentityConfirmation information. | |
| PermissionsLearningManager | Bool | False |
Field containing PermissionsLearningManager information. | |
| PermissionsSendCustomNotifications | Bool | False |
Field containing PermissionsSendCustomNotifications information. | |
| PermissionsPackaging2Delete | Bool | False |
Field containing PermissionsPackaging2Delete information. | |
| PermissionsUseOmnichannelInventoryAPIs | Bool | False |
Field containing PermissionsUseOmnichannelInventoryAPIs information. | |
| PermissionsViewRestrictionAndScopingRules | Bool | False |
Field containing PermissionsViewRestrictionAndScopingRules information. | |
| PermissionsFSCComprehensiveUserAccess | Bool | False |
Field containing PermissionsFSCComprehensiveUserAccess information. | |
| PermissionsMarketingAdmin | Bool | False |
Field containing PermissionsMarketingAdmin information. | |
| PermissionsBotManageBots | Bool | False |
Field containing PermissionsBotManageBots information. | |
| PermissionsBotManageBotsTrainingData | Bool | False |
Field containing PermissionsBotManageBotsTrainingData information. | |
| PermissionsEditDeliveryInformation | Bool | False |
Field containing PermissionsEditDeliveryInformation information. | |
| PermissionsOmnichannelInventorySync | Bool | False |
Field containing PermissionsOmnichannelInventorySync information. | |
| PermissionsManageLearningReporting | Bool | False |
Field containing PermissionsManageLearningReporting information. | |
| PermissionsIsotopeCToCUser | Bool | False |
Field containing PermissionsIsotopeCToCUser information. | |
| PermissionsManagePreferenceCenter | Bool | False |
Field containing PermissionsManagePreferenceCenter information. | |
| PermissionsCanAccessCE | Bool | False |
Field containing PermissionsCanAccessCE information. | |
| PermissionsIsotopeAccess | Bool | False |
Field containing PermissionsIsotopeAccess information. | |
| PermissionsIsotopeLEX | Bool | False |
Field containing PermissionsIsotopeLEX information. | |
| PermissionsQuipMetricsAccess | Bool | False |
Field containing PermissionsQuipMetricsAccess information. | |
| PermissionsQuipUserEngagementMetrics | Bool | False |
Field containing PermissionsQuipUserEngagementMetrics information. | |
| PermissionsTransactionSecurityExempt | Bool | False |
Field containing PermissionsTransactionSecurityExempt information. | |
| PermissionsManageExternalConnections | Bool | False |
Field containing PermissionsManageExternalConnections information. | |
| PermissionsUseSubscriptionEmails | Bool | False |
Field containing PermissionsUseSubscriptionEmails information. | |
| PermissionsManageEmailContent | Bool | False |
Field containing PermissionsManageEmailContent information. | |
| PermissionsAutomateEmailContent | Bool | False |
Field containing PermissionsAutomateEmailContent information. | |
| PermissionsAIViewInsightObjects | Bool | False |
Field containing PermissionsAIViewInsightObjects information. | |
| PermissionsAICreateInsightObjects | Bool | False |
Field containing PermissionsAICreateInsightObjects information. | |
| PermissionsViewMLModels | Bool | False |
Field containing PermissionsViewMLModels information. | |
| PermissionsLifecycleManagementAPIUser | Bool | False |
Field containing PermissionsLifecycleManagementAPIUser information. | |
| PermissionsLeadScoreResultPublisher | Bool | False |
Field containing PermissionsLeadScoreResultPublisher information. | |
| PermissionsManageGlobalPrivacyCenterVO | Bool | False |
Field containing PermissionsManageGlobalPrivacyCenterVO information. | |
| PermissionsNativeWebviewScrolling | Bool | False |
Field containing PermissionsNativeWebviewScrolling information. | |
| PermissionsViewDeveloperName | Bool | False |
Field containing PermissionsViewDeveloperName information. | |
| PermissionsBypassMFAForUiLogins | Bool | False |
Field containing PermissionsBypassMFAForUiLogins information. | |
| PermissionsClientSecretRotation | Bool | False |
Field containing PermissionsClientSecretRotation information. | |
| PermissionsUseOrderSummaryCreateAPI | Bool | False |
Field containing PermissionsUseOrderSummaryCreateAPI information. | |
| PermissionsAccessToServiceProcess | Bool | False |
Field containing PermissionsAccessToServiceProcess information. | |
| PermissionsManageOrchInstsAndWorkItems | Bool | False |
Field containing PermissionsManageOrchInstsAndWorkItems information. | |
| PermissionsCMSECEAuthoringAccess | Bool | False |
Field containing PermissionsCMSECEAuthoringAccess information. | |
| PermissionsManageDataspaceScope | Bool | False |
Field containing PermissionsManageDataspaceScope information. | |
| PermissionsConfigureDataspaceScope | Bool | False |
Field containing PermissionsConfigureDataspaceScope information. | |
| PermissionsManageCampaigns | Bool | False |
Field containing PermissionsManageCampaigns information. | |
| PermissionsViewClientSecret | Bool | False |
Field containing PermissionsViewClientSecret information. | |
| PermissionsCdcReportingCreateReports | Bool | False |
Field containing PermissionsCdcReportingCreateReports information. | |
| PermissionsCdcReportingViewReports | Bool | False |
Field containing PermissionsCdcReportingViewReports information. | |
| PermissionsCdcReportingManageFolders | Bool | False |
Field containing PermissionsCdcReportingManageFolders information. | |
| PermissionsExternalClientAppDeveloper | Bool | False |
Field containing PermissionsExternalClientAppDeveloper information. | |
| PermissionsExternalClientAppAdmin | Bool | False |
Field containing PermissionsExternalClientAppAdmin information. | |
| PermissionsExternalClientAppViewer | Bool | False |
Field containing PermissionsExternalClientAppViewer information. | |
| PermissionsOmnichannelInventoryBasic | Bool | False |
Field containing PermissionsOmnichannelInventoryBasic information. | |
| PermissionsDeleteCrMemoAndInvoice | Bool | False |
Field containing PermissionsDeleteCrMemoAndInvoice information. | |
| PermissionsEmbeddedMessagingAgent | Bool | False |
Field containing PermissionsEmbeddedMessagingAgent information. | |
| PermissionsViewNonSetupFlow | Bool | False |
Field containing PermissionsViewNonSetupFlow information. | |
| PermissionsCreateEditNonSetupFlow | Bool | False |
Field containing PermissionsCreateEditNonSetupFlow information. | |
| PermissionsDeleteNonSetupFlow | Bool | False |
Field containing PermissionsDeleteNonSetupFlow information. | |
| PermissionsActivateDeactivateNonSetupFlow | Bool | False |
Field containing PermissionsActivateDeactivateNonSetupFlow information. | |
| PermissionsAddDecisionElmntNonSetupFlow | Bool | False |
Field containing PermissionsAddDecisionElmntNonSetupFlow information. | |
| PermissionsAddCreaRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCreaRecElmntToNonSetupFlow information. | |
| PermissionsAddWaitToNonSetupFlow | Bool | False |
Field containing PermissionsAddWaitToNonSetupFlow information. | |
| PermissionsManageNamedCredentials | Bool | False |
Field containing PermissionsManageNamedCredentials information. | |
| PermissionsAddUpdtRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddUpdtRecElmntToNonSetupFlow information. | |
| PermissionsEditManagedOrderSummaries | Bool | False |
Field containing PermissionsEditManagedOrderSummaries information. | |
| PermissionsCanInitiateMessagingSessions | Bool | False |
Field containing PermissionsCanInitiateMessagingSessions information. | |
| PermissionsAuthorizePayments | Bool | False |
Field containing PermissionsAuthorizePayments information. | |
| PermissionsCaptureAndReversePayments | Bool | False |
Field containing PermissionsCaptureAndReversePayments information. | |
| PermissionsCombAuthAndCapPayments | Bool | False |
Field containing PermissionsCombAuthAndCapPayments information. | |
| PermissionsRefundPayments | Bool | False |
Field containing PermissionsRefundPayments information. | |
| PermissionsViewPayments | Bool | False |
Field containing PermissionsViewPayments information. | |
| PermissionsMakePayments | Bool | False |
Field containing PermissionsMakePayments information. | |
| PermissionsManageDataMaskPolicies | Bool | False |
Field containing PermissionsManageDataMaskPolicies information. | |
| PermissionsCanUpdateEmailMessage | Bool | False |
Field containing PermissionsCanUpdateEmailMessage information. | |
| PermissionsDownloadPackageVersionZips | Bool | False |
Field containing PermissionsDownloadPackageVersionZips information. | |
| PermissionsViewContentTaxonomy | Bool | False |
Field containing PermissionsViewContentTaxonomy information. | |
| PermissionsManageContentTaxonomy | Bool | False |
Field containing PermissionsManageContentTaxonomy information. | |
| PermissionsReassignOrchestrationWorkItems | Bool | False |
Field containing PermissionsReassignOrchestrationWorkItems information. | |
| PermissionsManageOrchestrationRuns | Bool | False |
Field containing PermissionsManageOrchestrationRuns information. | |
| PermissionsDigitalLendingUser | Bool | False |
Field containing PermissionsDigitalLendingUser information. | |
| PermissionsSendEmail | Bool | False |
Field containing PermissionsSendEmail information. | |
| PermissionsPreviewTestSendEmail | Bool | False |
Field containing PermissionsPreviewTestSendEmail information. | |
| PermissionsManageEmailMessagingSetup | Bool | False |
Field containing PermissionsManageEmailMessagingSetup information. | |
| PermissionsViewEmailMessagingSetup | Bool | False |
Field containing PermissionsViewEmailMessagingSetup information. | |
| PermissionsManageCertificatesExpiration | Bool | False |
Field containing PermissionsManageCertificatesExpiration information. | |
| PermissionsEnableIPFSUpload | Bool | False |
Field containing PermissionsEnableIPFSUpload information. | |
| PermissionsEnableBCTransactionPolling | Bool | False |
Field containing PermissionsEnableBCTransactionPolling information. | |
| PermissionsLobbyManagementUserAccess | Bool | False |
Field containing PermissionsLobbyManagementUserAccess information. | |
| PermissionsUMAWebTrackingSetup | Bool | False |
Field containing PermissionsUMAWebTrackingSetup information. | |
| PermissionsAddGetRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddGetRecElmntToNonSetupFlow information. | |
| PermissionsAddLoopElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddLoopElmntToNonSetupFlow information. | |
| PermissionsAddAsgntElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddAsgntElmntToNonSetupFlow information. | |
| PermissionsAddSubflowElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddSubflowElmntToNonSetupFlow information. | |
| PermissionsMonitorLoginHistory | Bool | False |
Field containing PermissionsMonitorLoginHistory information. | |
| PermissionsAddCollFltrElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCollFltrElmntToNonSetupFlow information. | |
| PermissionsAddCollSrtElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCollSrtElmntToNonSetupFlow information. | |
| PermissionsAddDelRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddDelRecElmntToNonSetupFlow information. | |
| PermissionsOpportunityInfluence | Bool | False |
Field containing PermissionsOpportunityInfluence information. | |
| PermissionsConsentBannerSettingsSetup | Bool | False |
Field containing PermissionsConsentBannerSettingsSetup information. | |
| PermissionsEnhancedSalesMobileExp | Bool | False |
Field containing PermissionsEnhancedSalesMobileExp information. | |
| PermissionsCanViewDataPrepRecipe | Bool | False |
Field containing PermissionsCanViewDataPrepRecipe information. | |
| PermissionsSimpleCsvDataImportUser | Bool | False |
Field containing PermissionsSimpleCsvDataImportUser information. | |
| PermissionsAdvancedCsvDataImportUser | Bool | False |
Field containing PermissionsAdvancedCsvDataImportUser information. | |
| PermissionsUmaQueryCMSEmailContent | Bool | False |
Field containing PermissionsUmaQueryCMSEmailContent information. | |
| PermissionsAccessToComplaintMgmt | Bool | False |
Field containing PermissionsAccessToComplaintMgmt information. | |
| PermissionsAccessToDisputeManagement | Bool | False |
Field containing PermissionsAccessToDisputeManagement information. | |
| PermissionsUMAStandaloneUserPerm | Bool | False |
Field containing PermissionsUMAStandaloneUserPerm information. | |
| PermissionsPersonalizedFinanceUserAccess | Bool | False |
Field containing PermissionsPersonalizedFinanceUserAccess information. | |
| PermissionsUmaEditConsentSettings | Bool | False |
Field containing PermissionsUmaEditConsentSettings information. | |
| PermissionsCustomAppsOnFSMobile | Bool | False |
Field containing PermissionsCustomAppsOnFSMobile information. | |
| PermissionsStageManagementDesignUser | Bool | False |
Field containing PermissionsStageManagementDesignUser information. | |
| PermissionsSegmentIntelligenceUser | Bool | False |
Field containing PermissionsSegmentIntelligenceUser information. | |
| PermissionsFSCArcGraphCommunityUser | Bool | False |
Field containing PermissionsFSCArcGraphCommunityUser information. | |
| PermissionsManageCdpMlModels | Bool | False |
Field containing PermissionsManageCdpMlModels information. | |
| PermissionsDigitalLendingAdminUser | Bool | False |
Field containing PermissionsDigitalLendingAdminUser information. | |
| PermissionsActivateSystemModeFlows | Bool | False |
Field containing PermissionsActivateSystemModeFlows information. | |
| PermissionsViewAllNonSetupFlows | Bool | False |
Field containing PermissionsViewAllNonSetupFlows information. | |
| PermissionsMcScoringRulesConfig | Bool | False |
Field containing PermissionsMcScoringRulesConfig information. | |
| PermissionsPersonalizationPlatform | Bool | False |
Field containing PermissionsPersonalizationPlatform information. | |
| PermissionsLeadInspectorUser | Bool | False |
Field containing PermissionsLeadInspectorUser information. | |
| PermissionsContactInspectorUser | Bool | False |
Field containing PermissionsContactInspectorUser information. | |
| PermissionsManageIntegrationConnections | Bool | False |
Field containing PermissionsManageIntegrationConnections information. | |
| PermissionsTableauCreateDashboard | Bool | False |
Field containing PermissionsTableauCreateDashboard information. | |
| PermissionsTableauViewDashboard | Bool | False |
Field containing PermissionsTableauViewDashboard information. | |
| PermissionsEinsteinCopilotUser | Bool | False |
Field containing PermissionsEinsteinCopilotUser information. | |
| PermissionsEinsteinCopilotBuilder | Bool | False |
Field containing PermissionsEinsteinCopilotBuilder information. | |
| PermissionsUseCreateOrderSummary | Bool | False |
Field containing PermissionsUseCreateOrderSummary information. | |
| PermissionsUseCreateCreditMemo | Bool | False |
Field containing PermissionsUseCreateCreditMemo information. | |
| PermissionsUseEnsureFunds | Bool | False |
Field containing PermissionsUseEnsureFunds information. | |
| PermissionsUseOrderItemSummaryCancel | Bool | False |
Field containing PermissionsUseOrderItemSummaryCancel information. | |
| PermissionsUseOrderItemSummaryReturn | Bool | False |
Field containing PermissionsUseOrderItemSummaryReturn information. | |
| PermissionsManageFilesAndAttachments | Bool | False |
Field containing PermissionsManageFilesAndAttachments information. | |
| PermissionsAddTrfmElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddTrfmElmntToNonSetupFlow information. | |
| PermissionsMobileMessagingAgent | Bool | False |
Field containing PermissionsMobileMessagingAgent information. | |
| PermissionsTableauCreateVisualization | Bool | False |
Field containing PermissionsTableauCreateVisualization information. | |
| PermissionsTableauViewVisualization | Bool | False |
Field containing PermissionsTableauViewVisualization information. | |
| PermissionsManageCustomDomains | Bool | False |
Field containing PermissionsManageCustomDomains information. | |
| PermissionsEngagementConfigUser | Bool | False |
Field containing PermissionsEngagementConfigUser information. | |
| PermissionsPersonalizationIntelUser | Bool | False |
Field containing PermissionsPersonalizationIntelUser information. | |
| PermissionsAttributionModelUser | Bool | False |
Field containing PermissionsAttributionModelUser information. | |
| PermissionsTableauCreateWorkspace | Bool | False |
Field containing PermissionsTableauCreateWorkspace information. | |
| PermissionsTableauViewWorkspace | Bool | False |
Field containing PermissionsTableauViewWorkspace information. | |
| PermissionsManageBriefs | Bool | False |
Field containing PermissionsManageBriefs information. | |
| PermissionsSalesInsightsUser | Bool | False |
Field containing PermissionsSalesInsightsUser information. | |
| PermissionsCanSendInitialSMSToIndividual | Bool | False |
Field containing PermissionsCanSendInitialSMSToIndividual information. | |
| PermissionsAccessDisputePrompts | Bool | False |
Field containing PermissionsAccessDisputePrompts information. | |
| PermissionsQueryNonVetoedFiles | Bool | False |
Field containing PermissionsQueryNonVetoedFiles information. | |
| PermissionsMetadataStudioUser | Bool | False |
Field containing PermissionsMetadataStudioUser information. | |
| PermissionsAddPathExprmElmntNonSetupFlow | Bool | False |
Field containing PermissionsAddPathExprmElmntNonSetupFlow information. | |
| PermissionsDigitalLendingWorkbench | Bool | False |
Field containing PermissionsDigitalLendingWorkbench information. | |
| PermissionsDigitalLendingEditReadOnly | Bool | False |
Field containing PermissionsDigitalLendingEditReadOnly information. | |
| PermissionsUseCanCancelInProgressChange | Bool | False |
Field containing PermissionsUseCanCancelInProgressChange information. | |
| PermissionsPrmExtIntPrtnrAdminUser | Bool | False |
Field containing PermissionsPrmExtIntPrtnrAdminUser information. | |
| PermissionsEinsteinAgentPlatformBuilder | Bool | False |
Field containing PermissionsEinsteinAgentPlatformBuilder information. | |
| PermissionsUseServicePartReturn | Bool | False |
Field containing PermissionsUseServicePartReturn information. | |
| PermissionsViewUMACalendar | Bool | False |
Field containing PermissionsViewUMACalendar information. | |
| PermissionsHeadlessPublishNudges | Bool | False |
Field containing PermissionsHeadlessPublishNudges information. | |
| PermissionsApprovalAdmin | Bool | False |
Field containing PermissionsApprovalAdmin information. | |
| PermissionsApprovalDesigner | Bool | False |
Field containing PermissionsApprovalDesigner information. | |
| PermissionsAccessServiceEinstein | Bool | False |
Field containing PermissionsAccessServiceEinstein information. | |
| PermissionsViewRecommendations | Bool | False |
Field containing PermissionsViewRecommendations information. | |
| PermissionsPrismPlaygroundUser | Bool | False |
Field containing PermissionsPrismPlaygroundUser information. | |
| PermissionsModifyAllPolicyCenterPolicies | Bool | False |
Field containing PermissionsModifyAllPolicyCenterPolicies information. | |
| PermissionsViewAllPolicyCenterPolicies | Bool | False |
Field containing PermissionsViewAllPolicyCenterPolicies information. | |
| PermissionsAccessSfDrive | Bool | False |
Field containing PermissionsAccessSfDrive information. | |
| PermissionsAppFrameworkManageApp | Bool | False |
Field containing PermissionsAppFrameworkManageApp information. | |
| PermissionsAppFrameworkViewApp | Bool | False |
Field containing PermissionsAppFrameworkViewApp information. | |
| PermissionsMCGSetupUserPerm | Bool | False |
Field containing PermissionsMCGSetupUserPerm information. | |
| PermissionsAgentforceServiceAgentUser | Bool | False |
Field containing PermissionsAgentforceServiceAgentUser information. | |
| PermissionsManageAgentforceServiceAgent | Bool | False |
Field containing PermissionsManageAgentforceServiceAgent information. | |
| PermissionsCanTranslateScrt2Conversation | Bool | False |
Field containing PermissionsCanTranslateScrt2Conversation information. | |
| PermissionsSlackFromTableau | Bool | False |
Field containing PermissionsSlackFromTableau information. | |
| PermissionsTableauShareSnapshot | Bool | False |
Field containing PermissionsTableauShareSnapshot information. | |
| PermissionsAccessBankingServiceAgent | Bool | False |
Field containing PermissionsAccessBankingServiceAgent information. | |
| PermissionsPrismBackofficeUser | Bool | False |
Field containing PermissionsPrismBackofficeUser information. | |
| PermissionsPersonalizationDecisioningUser | Bool | False |
Field containing PermissionsPersonalizationDecisioningUser information. | |
| PermissionsAccessBankingRelationshipAssistance | Bool | False |
Field containing PermissionsAccessBankingRelationshipAssistance information. | |
| PermissionsCanMarketingUserDebugFlow | Bool | False |
Field containing PermissionsCanMarketingUserDebugFlow information. | |
| PermissionsCanDoActAsUser | Bool | False |
Field containing PermissionsCanDoActAsUser information. | |
| PermissionsViewAllFieldsGlobal | Bool | False |
Field containing PermissionsViewAllFieldsGlobal information. | |
| PermissionsManageHerokuAppLink | Bool | False |
Field containing PermissionsManageHerokuAppLink information. | |
| PermissionsUserHasSendToListFilterAccess | Bool | False |
Field containing PermissionsUserHasSendToListFilterAccess information. | |
| PermissionsMngBenVerfForAssistiveAgnt | Bool | False |
Field containing PermissionsMngBenVerfForAssistiveAgnt information. | |
| PermissionsCreateModDGTrigNonSetupFlow | Bool | False |
Field containing PermissionsCreateModDGTrigNonSetupFlow information. | |
| PermissionsAccessPolicyAgent | Bool | False |
Field containing PermissionsAccessPolicyAgent information. | |
| PermissionsMCPMetadataApi | Bool | False |
Field containing PermissionsMCPMetadataApi information. | |
| PermissionsAppFrameworkManageTemplate | Bool | False |
Field containing PermissionsAppFrameworkManageTemplate information. | |
| PermissionsDigitalAgentUser | Bool | False |
Field containing PermissionsDigitalAgentUser information. | |
| PermissionsAccessWealthAdvisorAgent | Bool | False |
Field containing PermissionsAccessWealthAdvisorAgent information. | |
| PermissionsCanApproveUninstalledApps | Bool | False |
Field containing PermissionsCanApproveUninstalledApps information. | |
| PermissionsSetupAgentBuilder | Bool | False |
Field containing PermissionsSetupAgentBuilder information. | |
| PermissionsSetupAgentUser | Bool | False |
Field containing PermissionsSetupAgentUser information. | |
| PermissionsUserCanDeployStore | Bool | False |
Field containing PermissionsUserCanDeployStore information. | |
| PermissionsModifyAccessDenyPolicies | Bool | False |
Field containing PermissionsModifyAccessDenyPolicies information. | |
| PermissionsManageAccessPolicies | Bool | False |
Field containing PermissionsManageAccessPolicies information. | |
| PermissionsViewAccessPolicies | Bool | False |
Field containing PermissionsViewAccessPolicies information. | |
| PermissionsModifyAccessAllowPolicies | Bool | False |
Field containing PermissionsModifyAccessAllowPolicies information. | |
| PermissionsViewOrchestrationsInAutomApp | Bool | False |
Field containing PermissionsViewOrchestrationsInAutomApp information. | |
| PermissionsTerritoryOperations | Bool | False |
Field containing PermissionsTerritoryOperations information. | |
| Description | String | False |
Provides a description for the permission set. | |
| CreatedDate | Datetime | True |
Date and time when the permission set was created. | |
| CreatedById | String | True |
User.Id |
User ID of the creator of the permission set. |
| LastModifiedById | String | True |
User.Id |
User ID of the person who last modified the permission set. |
| NamespacePrefix | String | True |
Namespace prefix associated with the permission set, typically used for managed packages. | |
| HasActivationRequired | Bool | False |
Indicates whether the record has ActivationRequired. | |
| PermissionSetGroupId | String | True |
ID of the PermissionSetGroup associated with this record. | |
| Type | String | True |
Type of account or classification. | |
| PsgCount | Int | False |
Number of Psg associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for the last modification. | |
| LastModifiedDate | Datetime | True |
Date and time when the permission set was last modified. |
Assigns permission sets to users, extending their security and access beyond standard profiles.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the permission set assignment record. | |
| PermissionSetId | String | False |
Identifier of the permission set that is being assigned to the user or entity. | |
| PermissionSetGroupId | String | False |
ID of the PermissionSetGroup associated with this record. | |
| AssigneeId | String | False |
User.Id |
Identifier of the user or entity to whom the permission set is assigned. |
| ExpirationDate | Datetime | False |
Date associated with Expiration. | |
| IsActive | Bool | True |
Indicates whether the record is active. | |
| IsRevoked | Bool | False |
Indicates whether the record has the Revoked characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Timestamp indicating when the assignment was created or last modified in the system. |
Schema file for PermissionSetGroup.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| Status | String | True |
Status of the record. | |
| HasActivationRequired | Bool | False |
Indicates whether the record has ActivationRequired. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PermissionSetGroupComponent.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| PermissionSetGroupId | String | False |
ID of the PermissionSetGroup associated with this record. | |
| PermissionSetId | String | False |
ID of the PermissionSet associated with this record. | |
| PermissionSetIdType | String | False |
Specifies the type of the 'PermissionSetId' polymorphic field to use in the statement. | |
| PermissionSetIdExternalFieldName | String | False |
Specifies the external field name of the 'PermissionSetId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Manages the assignment of permission set licenses to specific users.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the permission set license assignment record. | |
| IsDeleted | Bool | True |
Indicates whether the permission set license assignment has been deleted. | |
| CreatedDate | Datetime | True |
Date and time when the license assignment record was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the license assignment record. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the license assignment record. |
| PermissionSetLicenseId | String | False |
Identifier of the permission set license being assigned to the user. | |
| AssigneeId | String | False |
User.Id |
Identifier of the user receiving the permission set license assignment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the most recent change to the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the license assignment record was last modified. |
Schema file for PermissionSetTabSetting.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Visibility | String | False |
Field containing Visibility information. | |
| Name | String | False |
Name of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. |
Schema file for PipelineInspectionListView.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ListViewId | String | False |
ListView.Id |
ID of the ListView associated with this record. |
| DateLiteralType | String | False |
Type classification for DateLiteral. | |
| StartDate | Date | False |
Start date for the record or activity. | |
| EndDate | Date | False |
End date for the record or activity. | |
| IsSystemManaged | Bool | True |
Indicates whether the record has the SystemManaged characteristic. | |
| ViewType | String | True |
Type classification for View. | |
| SummaryField | String | False |
Field containing SummaryField information. | |
| ChangePeriodLiteralType | String | False |
Type classification for ChangePeriodLiteral. | |
| ChangePeriodStartDate | Date | False |
Date associated with ChangePeriodStart. | |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| MarketSegments | String | False |
Field containing MarketSegments information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PlatformCachePartition.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| IsDefaultPartition | Bool | False |
Indicates whether the record has the DefaultPartition characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PlatformCachePartitionType.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| PlatformCachePartitionId | String | False |
ID of the PlatformCachePartition associated with this record. | |
| CacheType | String | False |
Type classification for Cache. | |
| AllocatedCapacity | Int | False |
City for AllocatedCapa address. | |
| AllocatedPurchasedCapacity | Int | False |
City for AllocatedPurchasedCapa address. | |
| AllocatedTrialCapacity | Int | False |
City for AllocatedTrialCapa address. | |
| AllocatedPartnerCapacity | Int | False |
City for AllocatedPartnerCapa address. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores price books that define different pricing structures for products and services.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the price book record. | |
| IsDeleted | Bool | True |
Indicates whether the price book has been deleted from the system. | |
| Name | String | False |
Name of the price book, typically used to distinguish between different pricing models or catalogs. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the price book was originally created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the price book record. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last updated the price book. |
| LastViewedDate | Datetime | True |
Most recent date and time when the price book record was viewed by a user. | |
| LastReferencedDate | Datetime | True |
Most recent date and time when the price book was referenced in another record or operation. | |
| IsActive | Bool | False |
Indicates whether the price book is currently active and available for use in transactions. | |
| IsArchived | Bool | True |
Indicates whether the record has the Archived characteristic. | |
| Description | String | False |
Text description providing additional details about the purpose or contents of the price book. | |
| IsStandard | Bool | True |
Indicates whether this is the system-generated standard price book. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last time the record was modified by any process. | |
| LastModifiedDate | Datetime | True |
Date and time when the price book was last modified. |
Represents individual product entries in a price book, linking products to specific pricing details.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the price book entry record. | |
| Name | String | True |
Name of the product associated with this price book entry. | |
| Pricebook2Id | String | False |
Pricebook2.Id |
Identifier of the price book that this entry belongs to. |
| Product2Id | String | False |
Product2.Id |
Identifier of the product being listed in the price book. |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| UnitPrice | Decimal | False |
List price of the product as specified in this price book entry. | |
| IsActive | Bool | False |
Indicates whether the price book entry is currently active and available for use. | |
| UseStandardPrice | Bool | False |
Specifies whether the standard product price should be used instead of a custom list price. | |
| CreatedDate | Datetime | True |
Date and time when the price book entry was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the price book entry. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the price book entry. |
| ProductCode | String | True |
Code used to identify the product in catalogs, orders, or inventory systems. | |
| IsDeleted | Bool | True |
Indicates whether the price book entry has been deleted from the system. | |
| IsArchived | Bool | True |
Indicates whether the record has the Archived characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last modification of the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the price book entry was last modified. |
Schema file for PrivacyPolicy.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PrivacyPolicyDefinitionId | String | False |
ID of the PrivacyPolicyDefinition associated with this record. | |
| DefinitionMasterLabel | String | True |
Field containing DefinitionMasterLabel information. | |
| DefinitionDeveloperName | String | True |
Field containing DefinitionDeveloperName information. | |
| Status | String | True |
Status of the record. | |
| Description | String | True |
Text description of the record. | |
| RunFrequency | String | True |
Field containing RunFrequency information. | |
| Type | String | True |
Type of account or classification. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PrivacyPolicyDefinition.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Status | String | False |
Status of the record. | |
| Type | String | False |
Type of account or classification. | |
| Description | String | False |
Text description of the record. | |
| RunFrequency | String | False |
Field containing RunFrequency information. | |
| ScheduledStart | Datetime | False |
Field containing ScheduledStart information. | |
| IsAllocatePermset | Bool | False |
Indicates whether the record has the AllocatePermset characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PrivacyRTBFRequest.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| JobRecord | String | False |
Field containing JobRecord information. | |
| PolicyNameId | String | False |
ID of the PolicyName associated with this record. | |
| Status | String | False |
Status of the record. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PrivacyRTBFRequestFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for ProcessException.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| ProcessExceptionNumber | String | True |
ProcessException identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| AttachedToId | String | False |
ID of the AttachedTo associated with this record. | |
| AttachedToIdType | String | False |
Specifies the type of the 'AttachedToId' polymorphic field to use in the statement. | |
| AttachedToIdExternalFieldName | String | False |
Specifies the external field name of the 'AttachedToId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Message | String | False |
Field containing Message information. | |
| StatusCategory | String | True |
Field containing StatusCategory information. | |
| Status | String | False |
Status of the record. | |
| Category | String | False |
Field containing Category information. | |
| Severity | String | False |
Field containing Severity information. | |
| Priority | String | False |
Priority level of the record. | |
| CaseId | String | False |
Case.Id |
ID of the Case associated with this record. |
| OrderSummaryId | String | False |
OrderSummary.Id |
ID of the OrderSummary associated with this record. |
| ExternalReference | String | False |
Field containing ExternalReference information. | |
| SeverityCategory | String | True |
Field containing SeverityCategory information. | |
| Description | String | False |
Text description of the record. | |
| AssetId | String | False |
Asset.Id |
ID of the Asset associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores work items assigned to users as part of an approval process.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the work item associated with a process instance step. | |
| ProcessInstanceId | String | False |
Identifier of the process instance to which this work item belongs. | |
| OriginalActorId | String | False |
Identifier of the original user or group assigned to complete the work item. | |
| OriginalActorIdType | String | False |
Specifies the type of the 'OriginalActorId' polymorphic field to use in the statement. | |
| OriginalActorIdExternalFieldName | String | False |
Specifies the external field name of the 'OriginalActorId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ActorId | String | False |
Identifier of the user or group currently responsible for acting on the work item. | |
| ActorIdType | String | False |
Specifies the type of the 'ActorId' polymorphic field to use in the statement. | |
| ActorIdExternalFieldName | String | False |
Specifies the external field name of the 'ActorId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ElapsedTimeInDays | Double | True |
Field containing ElapsedTimeInDays information. | |
| ElapsedTimeInHours | Double | True |
Field containing ElapsedTimeInHours information. | |
| ElapsedTimeInMinutes | Double | True |
Field containing ElapsedTimeInMinutes information. | |
| IsDeleted | Bool | True |
Indicates whether the work item has been deleted from the system. | |
| CreatedDate | Datetime | True |
Date and time when the work item was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the work item record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent modification to the work item. |
Stores product catalog information, including details about goods and services offered by a company.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the product record. | |
| Name | String | False |
Name of the product, used in catalogs, quotes, and opportunities. | |
| ProductCode | String | False |
Internal or external code used to identify the product across systems. | |
| Description | String | False |
Detailed description of the product, including features or specifications. | |
| IsActive | Bool | False |
Indicates whether the product is currently active and available for use. | |
| CreatedDate | Datetime | True |
Date and time when the product record was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the product record. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the product record. |
| Family | String | False |
Category or group that the product belongs to, used for organizing and reporting. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| ExternalDataSourceId | String | False |
ID of the ExternalDataSource associated with this record. | |
| ExternalId | String | False |
External ID from another system. | |
| DisplayUrl | String | False |
Field containing DisplayUrl information. | |
| QuantityUnitOfMeasure | String | False |
Field containing QuantityUnitOfMeasure information. | |
| IsDeleted | Bool | True |
Indicates whether the product has been deleted from the system. | |
| IsArchived | Bool | True |
Indicates whether the record has the Archived characteristic. | |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| StockKeepingUnit | String | False |
Field containing StockKeepingUnit information. | |
| Type | String | False |
Type of account or classification. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the latest changes to the product. | |
| LastModifiedDate | Datetime | True |
Date and time when the product record was last updated. |
Captures Chatter activity, including posts and updates, related to Product2 records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the feed item related to a product. | |
| ParentId | String | True |
Product2.Id |
Identifier of the product (Product2) record that this feed item is associated with. |
| Type | String | True |
Type of feed item, such as text post, content share, or link. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted. | |
| CommentCount | Int | True |
Number of comments associated with the feed item. | |
| LikeCount | Int | True |
Number of likes the feed item has received. | |
| Title | String | True |
Title or subject of the feed item, if applicable. | |
| Body | String | True |
Main content or message body of the feed item. | |
| LinkUrl | String | True |
URL of the link shared in the feed item, if applicable. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
Identifier of a related record mentioned or linked in the feed item. | |
| InsertedById | String | True |
User.Id |
Identifier of the user or automation that inserted the feed item, which might differ from the creator. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the latest update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last updated. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for ProductConsumptionSchedule.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ProductId | String | False |
Product2.Id |
ID of the Product associated with this record. |
| ConsumptionScheduleId | String | False |
ID of the ConsumptionSchedule associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ProductEntitlementTemplate.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Product2Id | String | False |
Product2.Id |
ID of the Product associated with this record. |
| EntitlementTemplateId | String | False |
ID of the EntitlementTemplate associated with this record. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for ProductRelationshipType.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| MainProductRoleCat | String | False |
Field containing MainProductRoleCat information. | |
| AssociatedProductRoleCat | String | False |
Field containing AssociatedProductRoleCat information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Defines user profiles, specifying access permissions and security settings for different roles.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the profile record. | |
| Name | String | False |
Name of the profile, typically indicating the role or level of access it provides. | |
| PermissionsEmailSingle | Bool | False |
Allows users to send individual emails from Salesforce. | |
| PermissionsEmailMass | Bool | False |
Grants permission to send mass emails to multiple recipients at once. | |
| PermissionsEditTask | Bool | False |
Allows editing of task records assigned to or created by the user. | |
| PermissionsEditEvent | Bool | False |
Grants permission to edit calendar event records. | |
| PermissionsExportReport | Bool | False |
Enables users to export report data into external formats like Excel or CSV. | |
| PermissionsImportPersonal | Bool | False |
Allows users to import their personal contacts into Salesforce. | |
| PermissionsDataExport | Bool | False |
Field containing PermissionsDataExport information. | |
| PermissionsManageUsers | Bool | False |
Grants administrative access to create, modify, and deactivate user accounts. | |
| PermissionsEditPublicFilters | Bool | False |
Field containing PermissionsEditPublicFilters information. | |
| PermissionsEditPublicTemplates | Bool | False |
Allows editing of email templates shared across the organization. | |
| PermissionsModifyAllData | Bool | False |
Provides full access to all organization data, overriding sharing settings. | |
| PermissionsEditBillingInfo | Bool | False |
Field containing PermissionsEditBillingInfo information. | |
| PermissionsManageCases | Bool | False |
Enables management of customer support cases, including assignment and resolution. | |
| PermissionsMassInlineEdit | Bool | False |
Field containing PermissionsMassInlineEdit information. | |
| PermissionsEditKnowledge | Bool | False |
Allows editing of individual Salesforce Knowledge articles. | |
| PermissionsManageKnowledge | Bool | False |
Grants full administrative control over Salesforce Knowledge settings and content. | |
| PermissionsManageSolutions | Bool | False |
Allows management of solutions, including publishing and editing. | |
| PermissionsCustomizeApplication | Bool | False |
Grants access to customize the Salesforce interface, such as tabs, fields, and page layouts. | |
| PermissionsEditReadonlyFields | Bool | False |
Enables editing of fields that are normally read-only, typically via API or automation. | |
| PermissionsRunReports | Bool | False |
Allows users to run reports available in their folders or shared folders. | |
| PermissionsViewSetup | Bool | False |
Grants visibility into the Setup area, including configuration and customization options. | |
| PermissionsTransferAnyEntity | Bool | False |
Allows transferring ownership of any record, regardless of the current owner. | |
| PermissionsNewReportBuilder | Bool | False |
Grants access to the Lightning Report Builder for creating custom reports. | |
| PermissionsActivateContract | Bool | False |
Enables users to activate contract records. | |
| PermissionsActivateOrder | Bool | False |
Field containing PermissionsActivateOrder information. | |
| PermissionsImportLeads | Bool | False |
Allows importing lead records into Salesforce using import tools. | |
| PermissionsManageLeads | Bool | False |
Grants full access to manage leads, including creating, editing, and converting. | |
| PermissionsTransferAnyLead | Bool | False |
Allows users to transfer ownership of any lead, regardless of the current owner. | |
| PermissionsViewAllData | Bool | False |
Grants read-only access to all data in the organization, bypassing sharing settings. | |
| PermissionsEditPublicDocuments | Bool | False |
Allows editing of documents stored in publicly accessible folders. | |
| PermissionsViewEncryptedData | Bool | False |
Field containing PermissionsViewEncryptedData information. | |
| PermissionsEditBrandTemplates | Bool | False |
Grants permission to modify email branding assets such as letterheads. | |
| PermissionsEditHtmlTemplates | Bool | False |
Enables editing of HTML-formatted email templates. | |
| PermissionsChatterInternalUser | Bool | False |
Grants internal user access to Chatter collaboration features. | |
| PermissionsManageEncryptionKeys | Bool | False |
Field containing PermissionsManageEncryptionKeys information. | |
| PermissionsDeleteActivatedContract | Bool | False |
Grants permission to delete contracts that have already been activated. | |
| PermissionsChatterInviteExternalUsers | Bool | False |
Allows inviting external users to participate in Chatter discussions. | |
| PermissionsSendSitRequests | Bool | False |
Allows users to send stay-in-touch requests to update contact information. | |
| PermissionsApiUserOnly | Bool | False |
Field containing PermissionsApiUserOnly information. | |
| PermissionsManageRemoteAccess | Bool | False |
Grants permission to manage connected apps and remote access settings. | |
| PermissionsCanUseNewDashboardBuilder | Bool | False |
Allows use of the Lightning Dashboard Builder with drag-and-drop functionality. | |
| PermissionsManageCategories | Bool | False |
Grants access to create and manage data categories for Knowledge articles. | |
| PermissionsConvertLeads | Bool | False |
Enables users to convert leads into contacts, accounts, and opportunities. | |
| PermissionsPasswordNeverExpires | Bool | False |
Prevents the user's password from expiring, bypassing standard expiration policies. | |
| PermissionsUseTeamReassignWizards | Bool | False |
Allows use of wizards to reassign teams for accounts, opportunities, or cases. | |
| PermissionsEditActivatedOrders | Bool | False |
Field containing PermissionsEditActivatedOrders information. | |
| PermissionsInstallMultiforce | Bool | False |
Grants permission to download and install packages from the AppExchange. | |
| PermissionsPublishMultiforce | Bool | False |
Allows users to upload and publish managed or unmanaged AppExchange packages. | |
| PermissionsChatterOwnGroups | Bool | False |
Grants users the ability to create and manage their own Chatter groups. | |
| PermissionsEditOppLineItemUnitPrice | Bool | False |
Allows editing of the unit price for products listed on opportunity records. | |
| PermissionsManageTerritories | Bool | False |
Field containing PermissionsManageTerritories information. | |
| PermissionsCreateMultiforce | Bool | False |
Grants permission to create new AppExchange packages within Salesforce. | |
| PermissionsBulkApiHardDelete | Bool | False |
Enables hard deletion of records via the Bulk API, skipping the Recycle Bin. | |
| PermissionsSolutionImport | Bool | False |
Allows importing of solution records from external sources. | |
| PermissionsManageCallCenters | Bool | False |
Grants access to create and manage call center settings and configurations. | |
| PermissionsManageSynonyms | Bool | False |
Grants permission to define and manage search synonyms for enhanced search functionality. | |
| PermissionsViewContent | Bool | False |
Enables users to view Salesforce Content within portals or communities. | |
| PermissionsManageEmailClientConfig | Bool | False |
Allows configuration of email client integrations with Salesforce. | |
| PermissionsEnableNotifications | Bool | False |
Grants permission to send outbound workflow notifications such as emails or messages. | |
| PermissionsIsSsoEnabled | Bool | False |
Field containing PermissionsIsSsoEnabled information. | |
| PermissionsManageDataIntegrations | Bool | False |
Allows management of integrations with external data sources. | |
| PermissionsDistributeFromPersWksp | Bool | False |
Field containing PermissionsDistributeFromPersWksp information. | |
| PermissionsViewDataCategories | Bool | False |
Enables viewing of data category structures in Salesforce Knowledge. | |
| PermissionsManageDataCategories | Bool | False |
Grants administrative control to manage data category groups and hierarchies. | |
| PermissionsAuthorApex | Bool | False |
Allows users to create and modify Apex classes and triggers. | |
| PermissionsManageMobile | Bool | False |
Grants permission to configure and manage Salesforce mobile app settings. | |
| PermissionsApiEnabled | Bool | False |
Enables access to Salesforce via its API for integration purposes. | |
| PermissionsManageCustomReportTypes | Bool | False |
Allows creation and modification of custom report types. | |
| PermissionsEditCaseComments | Bool | False |
Grants permission to edit comments on support cases. | |
| PermissionsTransferAnyCase | Bool | False |
Allows transferring ownership of any case, regardless of who currently owns it. | |
| PermissionsContentAdministrator | Bool | False |
Provides full access to manage Salesforce Customer Relationship Management (CRM) Content. | |
| PermissionsCreateWorkspaces | Bool | False |
Grants permission to create new content libraries for document management. | |
| PermissionsManageContentPermissions | Bool | False |
Allows setting access permissions for content in libraries. | |
| PermissionsManageContentProperties | Bool | False |
Grants ability to configure metadata and properties for content items. | |
| PermissionsManageContentTypes | Bool | False |
Allows creation and management of content types in Salesforce libraries. | |
| PermissionsManageExchangeConfig | Bool | False |
Field containing PermissionsManageExchangeConfig information. | |
| PermissionsManageAnalyticSnapshots | Bool | False |
Grants access to set up and manage analytic snapshots for historical data tracking. | |
| PermissionsScheduleReports | Bool | False |
Allows users to schedule automated delivery of reports via email. | |
| PermissionsManageBusinessHourHolidays | Bool | False |
Grants access to configure business hours and holiday schedules for service operations. | |
| PermissionsManageEntitlements | Bool | False |
Field containing PermissionsManageEntitlements information. | |
| PermissionsManageDynamicDashboards | Bool | False |
Allows creation and management of dashboards that display data dynamically based on the viewer. | |
| PermissionsCustomSidebarOnAllPages | Bool | False |
Enables display of custom sidebar components across all standard Salesforce pages. | |
| PermissionsManageInteraction | Bool | False |
Grants permission to create and manage flows using Flow Builder. | |
| PermissionsViewMyTeamsDashboards | Bool | False |
Allows viewing of dashboards that are shared with the user's team. | |
| PermissionsModerateChatter | Bool | False |
Enables moderation of Chatter posts and comments, including the ability to delete inappropriate content. | |
| PermissionsResetPasswords | Bool | False |
Grants permission to reset user passwords and unlock accounts. | |
| PermissionsFlowUFLRequired | Bool | False |
Indicates that the user must have the Flow User Feature License to run flows. | |
| PermissionsCanInsertFeedSystemFields | Bool | False |
Allows insertion of system field values into Chatter feed posts. | |
| PermissionsActivitiesAccess | Bool | False |
Field containing PermissionsActivitiesAccess information. | |
| PermissionsManageKnowledgeImportExport | Bool | False |
Grants access to import and export Salesforce Knowledge articles. | |
| PermissionsUseInboxSchedulingOnBehalfOf | Bool | False |
Field containing PermissionsUseInboxSchedulingOnBehalfOf information. | |
| PermissionsEmailTemplateManagement | Bool | False |
Allows creation, editing, and management of email templates. | |
| PermissionsEmailAdministration | Bool | False |
Enables configuration of organization-wide email settings and policies. | |
| PermissionsDeleteEventMonitoringData | Bool | False |
Field containing PermissionsDeleteEventMonitoringData information. | |
| PermissionsManageChatterMessages | Bool | False |
Allows viewing and deletion of private Chatter messages between users. | |
| PermissionsAllowEmailIC | Bool | False |
Field containing PermissionsAllowEmailIC information. | |
| PermissionsChatterFileLink | Bool | False |
Field containing PermissionsChatterFileLink information. | |
| PermissionsForceTwoFactor | Bool | False |
Requires two-factor authentication for users logging in through the UI. | |
| PermissionsViewEventLogFiles | Bool | False |
Field containing PermissionsViewEventLogFiles information. | |
| PermissionsManageNetworks | Bool | False |
Grants permission to create and configure Salesforce Communities. | |
| PermissionsManageAuthProviders | Bool | False |
Allows management of authentication providers for single sign-on and login options. | |
| PermissionsRunFlow | Bool | False |
Enables users to run flows initiated manually or via automation. | |
| PermissionsCreateCustomizeDashboards | Bool | False |
Field containing PermissionsCreateCustomizeDashboards information. | |
| PermissionsCreateDashboardFolders | Bool | False |
Field containing PermissionsCreateDashboardFolders information. | |
| PermissionsViewPublicDashboards | Bool | False |
Field containing PermissionsViewPublicDashboards information. | |
| PermissionsManageDashbdsInPubFolders | Bool | False |
Field containing PermissionsManageDashbdsInPubFolders information. | |
| PermissionsCreateCustomizeReports | Bool | False |
Field containing PermissionsCreateCustomizeReports information. | |
| PermissionsCreateReportFolders | Bool | False |
Field containing PermissionsCreateReportFolders information. | |
| PermissionsViewPublicReports | Bool | False |
Field containing PermissionsViewPublicReports information. | |
| PermissionsManageReportsInPubFolders | Bool | False |
Field containing PermissionsManageReportsInPubFolders information. | |
| PermissionsEditMyDashboards | Bool | False |
Field containing PermissionsEditMyDashboards information. | |
| PermissionsEditMyReports | Bool | False |
Field containing PermissionsEditMyReports information. | |
| PermissionsDeleteFieldHistoryArchive | Bool | False |
Field containing PermissionsDeleteFieldHistoryArchive information. | |
| PermissionsViewAllUsers | Bool | False |
Grants visibility into all user records within the organization. | |
| PermissionsAllowUniversalSearch | Bool | False |
Enables use of global search to access all searchable records and objects. | |
| PermissionsConnectOrgToEnvironmentHub | Bool | False |
Allows the organization to be linked to the Environment Hub for multi-org management. | |
| PermissionsWorkCalibrationUser | Bool | False |
Field containing PermissionsWorkCalibrationUser information. | |
| PermissionsCreateCustomizeFilters | Bool | False |
Field containing PermissionsCreateCustomizeFilters information. | |
| PermissionsWorkDotComUserPerm | Bool | False |
Field containing PermissionsWorkDotComUserPerm information. | |
| PermissionsContentHubUser | Bool | False |
Field containing PermissionsContentHubUser information. | |
| PermissionsGovernNetworks | Bool | False |
Field containing PermissionsGovernNetworks information. | |
| PermissionsSalesConsole | Bool | False |
Grants access to the Sales Console app for optimized sales workflows. | |
| PermissionsTwoFactorApi | Bool | False |
Requires two-factor authentication for API logins. | |
| PermissionsDeleteTopics | Bool | False |
Allows users to delete topics from Chatter posts or records. | |
| PermissionsEditTopics | Bool | False |
Grants permission to modify existing Chatter topics. | |
| PermissionsCreateTopics | Bool | False |
Allows users to create new Chatter topics. | |
| PermissionsAssignTopics | Bool | False |
Enables assignment of Chatter topics to records and posts. | |
| PermissionsIdentityEnabled | Bool | False |
Grants access to Salesforce Identity features such as single sign-on and connected apps. | |
| PermissionsIdentityConnect | Bool | False |
Allows integration with Identity Connect for syncing user data from Active Directory. | |
| PermissionsAllowViewKnowledge | Bool | False |
Enables users to view Salesforce Knowledge articles according to their permissions. | |
| PermissionsContentWorkspaces | Bool | False |
Field containing PermissionsContentWorkspaces information. | |
| PermissionsManageSearchPromotionRules | Bool | False |
Field containing PermissionsManageSearchPromotionRules information. | |
| PermissionsCustomMobileAppsAccess | Bool | False |
Field containing PermissionsCustomMobileAppsAccess information. | |
| PermissionsViewHelpLink | Bool | False |
Field containing PermissionsViewHelpLink information. | |
| PermissionsManageProfilesPermissionsets | Bool | False |
Field containing PermissionsManageProfilesPermissionsets information. | |
| PermissionsAssignPermissionSets | Bool | False |
Field containing PermissionsAssignPermissionSets information. | |
| PermissionsManageRoles | Bool | False |
Field containing PermissionsManageRoles information. | |
| PermissionsManageIpAddresses | Bool | False |
Field containing PermissionsManageIpAddresses information. | |
| PermissionsManageSharing | Bool | False |
Field containing PermissionsManageSharing information. | |
| PermissionsManageInternalUsers | Bool | False |
Field containing PermissionsManageInternalUsers information. | |
| PermissionsManagePasswordPolicies | Bool | False |
Field containing PermissionsManagePasswordPolicies information. | |
| PermissionsManageLoginAccessPolicies | Bool | False |
Field containing PermissionsManageLoginAccessPolicies information. | |
| PermissionsViewPlatformEvents | Bool | False |
Field containing PermissionsViewPlatformEvents information. | |
| PermissionsManageCustomPermissions | Bool | False |
Field containing PermissionsManageCustomPermissions information. | |
| PermissionsCanVerifyComment | Bool | False |
Field containing PermissionsCanVerifyComment information. | |
| PermissionsManageUnlistedGroups | Bool | False |
Field containing PermissionsManageUnlistedGroups information. | |
| PermissionsStdAutomaticActivityCapture | Bool | False |
Field containing PermissionsStdAutomaticActivityCapture information. | |
| PermissionsFreezeUsers | Bool | False |
Field containing PermissionsFreezeUsers information. | |
| PermissionsInsightsAppDashboardEditor | Bool | False |
Field containing PermissionsInsightsAppDashboardEditor information. | |
| PermissionsManageTwoFactor | Bool | False |
Field containing PermissionsManageTwoFactor information. | |
| PermissionsInsightsAppUser | Bool | False |
Field containing PermissionsInsightsAppUser information. | |
| PermissionsInsightsAppAdmin | Bool | False |
Field containing PermissionsInsightsAppAdmin information. | |
| PermissionsInsightsAppEltEditor | Bool | False |
Field containing PermissionsInsightsAppEltEditor information. | |
| PermissionsInsightsAppUploadUser | Bool | False |
Field containing PermissionsInsightsAppUploadUser information. | |
| PermissionsInsightsCreateApplication | Bool | False |
Field containing PermissionsInsightsCreateApplication information. | |
| PermissionsLightningExperienceUser | Bool | False |
Field containing PermissionsLightningExperienceUser information. | |
| PermissionsViewDataLeakageEvents | Bool | False |
Field containing PermissionsViewDataLeakageEvents information. | |
| PermissionsConfigCustomRecs | Bool | False |
Field containing PermissionsConfigCustomRecs information. | |
| PermissionsSubmitMacrosAllowed | Bool | False |
Field containing PermissionsSubmitMacrosAllowed information. | |
| PermissionsBulkMacrosAllowed | Bool | False |
Field containing PermissionsBulkMacrosAllowed information. | |
| PermissionsShareInternalArticles | Bool | False |
Field containing PermissionsShareInternalArticles information. | |
| PermissionsManageSessionPermissionSets | Bool | False |
Field containing PermissionsManageSessionPermissionSets information. | |
| PermissionsManageTemplatedApp | Bool | False |
Field containing PermissionsManageTemplatedApp information. | |
| PermissionsUseTemplatedApp | Bool | False |
Field containing PermissionsUseTemplatedApp information. | |
| PermissionsSendAnnouncementEmails | Bool | False |
Field containing PermissionsSendAnnouncementEmails information. | |
| PermissionsChatterEditOwnPost | Bool | False |
Field containing PermissionsChatterEditOwnPost information. | |
| PermissionsChatterEditOwnRecordPost | Bool | False |
Field containing PermissionsChatterEditOwnRecordPost information. | |
| PermissionsWaveTabularDownload | Bool | False |
Field containing PermissionsWaveTabularDownload information. | |
| PermissionsWaveCommunityUser | Bool | False |
Field containing PermissionsWaveCommunityUser information. | |
| PermissionsAutomaticActivityCapture | Bool | False |
Field containing PermissionsAutomaticActivityCapture information. | |
| PermissionsImportCustomObjects | Bool | False |
Field containing PermissionsImportCustomObjects information. | |
| PermissionsSalesforceIQInbox | Bool | False |
Field containing PermissionsSalesforceIQInbox information. | |
| PermissionsDelegatedTwoFactor | Bool | False |
Field containing PermissionsDelegatedTwoFactor information. | |
| PermissionsChatterComposeUiCodesnippet | Bool | False |
Field containing PermissionsChatterComposeUiCodesnippet information. | |
| PermissionsSelectFilesFromSalesforce | Bool | False |
Field containing PermissionsSelectFilesFromSalesforce information. | |
| PermissionsModerateNetworkUsers | Bool | False |
Field containing PermissionsModerateNetworkUsers information. | |
| PermissionsMergeTopics | Bool | False |
Field containing PermissionsMergeTopics information. | |
| PermissionsSubscribeToLightningReports | Bool | False |
Field containing PermissionsSubscribeToLightningReports information. | |
| PermissionsManagePvtRptsAndDashbds | Bool | False |
Field containing PermissionsManagePvtRptsAndDashbds information. | |
| PermissionsAllowLightningLogin | Bool | False |
Field containing PermissionsAllowLightningLogin information. | |
| PermissionsLeadScoreUser | Bool | False |
Field containing PermissionsLeadScoreUser information. | |
| PermissionsCampaignInfluence2 | Bool | False |
Field containing PermissionsCampaignInfluence2 information. | |
| PermissionsViewDataAssessment | Bool | False |
Field containing PermissionsViewDataAssessment information. | |
| PermissionsRemoveDirectMessageMembers | Bool | False |
Field containing PermissionsRemoveDirectMessageMembers information. | |
| PermissionsCanApproveFeedPost | Bool | False |
Field containing PermissionsCanApproveFeedPost information. | |
| PermissionsAddDirectMessageMembers | Bool | False |
Field containing PermissionsAddDirectMessageMembers information. | |
| PermissionsAllowViewEditConvertedLeads | Bool | False |
Field containing PermissionsAllowViewEditConvertedLeads information. | |
| PermissionsShowCompanyNameAsUserBadge | Bool | False |
Field containing PermissionsShowCompanyNameAsUserBadge information. | |
| PermissionsAccessCMC | Bool | False |
Field containing PermissionsAccessCMC information. | |
| PermissionsViewHealthCheck | Bool | False |
Field containing PermissionsViewHealthCheck information. | |
| PermissionsManageHealthCheck | Bool | False |
Field containing PermissionsManageHealthCheck information. | |
| PermissionsPackaging2 | Bool | False |
Field containing PermissionsPackaging2 information. | |
| PermissionsManageCertificates | Bool | False |
Field containing PermissionsManageCertificates information. | |
| PermissionsCreateReportInLightning | Bool | False |
Field containing PermissionsCreateReportInLightning information. | |
| PermissionsPreventClassicExperience | Bool | False |
Field containing PermissionsPreventClassicExperience information. | |
| PermissionsHideReadByList | Bool | False |
Field containing PermissionsHideReadByList information. | |
| PermissionsDeleteFieldHistory | Bool | False |
Field containing PermissionsDeleteFieldHistory information. | |
| PermissionsListEmailSend | Bool | False |
Field containing PermissionsListEmailSend information. | |
| PermissionsFeedPinning | Bool | False |
Field containing PermissionsFeedPinning information. | |
| PermissionsChangeDashboardColors | Bool | False |
Field containing PermissionsChangeDashboardColors information. | |
| PermissionsManageRecommendationStrategies | Bool | False |
Field containing PermissionsManageRecommendationStrategies information. | |
| PermissionsManagePropositions | Bool | False |
Field containing PermissionsManagePropositions information. | |
| PermissionsCloseConversations | Bool | False |
Field containing PermissionsCloseConversations information. | |
| PermissionsSubscribeReportRolesGrps | Bool | False |
Field containing PermissionsSubscribeReportRolesGrps information. | |
| PermissionsSubscribeDashboardRolesGrps | Bool | False |
Field containing PermissionsSubscribeDashboardRolesGrps information. | |
| PermissionsUseWebLink | Bool | False |
Field containing PermissionsUseWebLink information. | |
| PermissionsHasUnlimitedNBAExecutions | Bool | False |
Field containing PermissionsHasUnlimitedNBAExecutions information. | |
| PermissionsViewOnlyEmbeddedAppUser | Bool | False |
Field containing PermissionsViewOnlyEmbeddedAppUser information. | |
| PermissionsViewAllActivities | Bool | False |
Field containing PermissionsViewAllActivities information. | |
| PermissionsSubscribeReportToOtherUsers | Bool | False |
Field containing PermissionsSubscribeReportToOtherUsers information. | |
| PermissionsLightningConsoleAllowedForUser | Bool | False |
Field containing PermissionsLightningConsoleAllowedForUser information. | |
| PermissionsSubscribeReportsRunAsUser | Bool | False |
Field containing PermissionsSubscribeReportsRunAsUser information. | |
| PermissionsSubscribeToLightningDashboards | Bool | False |
Field containing PermissionsSubscribeToLightningDashboards information. | |
| PermissionsSubscribeDashboardToOtherUsers | Bool | False |
Field containing PermissionsSubscribeDashboardToOtherUsers information. | |
| PermissionsPardotUser | Bool | False |
Field containing PermissionsPardotUser information. | |
| PermissionsCreateLtngTempInPub | Bool | False |
Field containing PermissionsCreateLtngTempInPub information. | |
| PermissionsTransactionalEmailSend | Bool | False |
Field containing PermissionsTransactionalEmailSend information. | |
| PermissionsViewPrivateStaticResources | Bool | False |
Field containing PermissionsViewPrivateStaticResources information. | |
| PermissionsCreateLtngTempFolder | Bool | False |
Field containing PermissionsCreateLtngTempFolder information. | |
| PermissionsApexRestServices | Bool | False |
Field containing PermissionsApexRestServices information. | |
| PermissionsEnableCommunityAppLauncher | Bool | False |
Field containing PermissionsEnableCommunityAppLauncher information. | |
| PermissionsGiveRecognitionBadge | Bool | False |
Field containing PermissionsGiveRecognitionBadge information. | |
| PermissionsSalesforceIQInternal | Bool | False |
Field containing PermissionsSalesforceIQInternal information. | |
| PermissionsUseMySearch | Bool | False |
Field containing PermissionsUseMySearch information. | |
| PermissionsLtngPromoReserved01UserPerm | Bool | False |
Field containing PermissionsLtngPromoReserved01UserPerm information. | |
| PermissionsManageSubscriptions | Bool | False |
Field containing PermissionsManageSubscriptions information. | |
| PermissionsWaveManagePrivateAssetsUser | Bool | False |
Field containing PermissionsWaveManagePrivateAssetsUser information. | |
| PermissionsCanEditDataPrepRecipe | Bool | False |
Field containing PermissionsCanEditDataPrepRecipe information. | |
| PermissionsAddAnalyticsRemoteConnections | Bool | False |
Field containing PermissionsAddAnalyticsRemoteConnections information. | |
| PermissionsManageSurveys | Bool | False |
Field containing PermissionsManageSurveys information. | |
| PermissionsUseAssistantDialog | Bool | False |
Field containing PermissionsUseAssistantDialog information. | |
| PermissionsUseQuerySuggestions | Bool | False |
Field containing PermissionsUseQuerySuggestions information. | |
| PermissionsRecordVisibilityAPI | Bool | False |
Field containing PermissionsRecordVisibilityAPI information. | |
| PermissionsViewRoles | Bool | False |
Field containing PermissionsViewRoles information. | |
| PermissionsCanManageMaps | Bool | False |
Field containing PermissionsCanManageMaps information. | |
| PermissionsLMOutboundMessagingUserPerm | Bool | False |
Field containing PermissionsLMOutboundMessagingUserPerm information. | |
| PermissionsModifyDataClassification | Bool | False |
Field containing PermissionsModifyDataClassification information. | |
| PermissionsPrivacyDataAccess | Bool | False |
Field containing PermissionsPrivacyDataAccess information. | |
| PermissionsQueryAllFiles | Bool | False |
Field containing PermissionsQueryAllFiles information. | |
| PermissionsModifyMetadata | Bool | False |
Field containing PermissionsModifyMetadata information. | |
| PermissionsManageCMS | Bool | False |
Field containing PermissionsManageCMS information. | |
| PermissionsSandboxTestingInCommunityApp | Bool | False |
Field containing PermissionsSandboxTestingInCommunityApp information. | |
| PermissionsCanEditPrompts | Bool | False |
Field containing PermissionsCanEditPrompts information. | |
| PermissionsViewUserPII | Bool | False |
Field containing PermissionsViewUserPII information. | |
| PermissionsManageHubConnections | Bool | False |
Field containing PermissionsManageHubConnections information. | |
| PermissionsB2BMarketingAnalyticsUser | Bool | False |
Field containing PermissionsB2BMarketingAnalyticsUser information. | |
| PermissionsTraceXdsQueries | Bool | False |
Field containing PermissionsTraceXdsQueries information. | |
| PermissionsViewSecurityCommandCenter | Bool | False |
Field containing PermissionsViewSecurityCommandCenter information. | |
| PermissionsManageSecurityCommandCenter | Bool | False |
Field containing PermissionsManageSecurityCommandCenter information. | |
| PermissionsViewAllCustomSettings | Bool | False |
Field containing PermissionsViewAllCustomSettings information. | |
| PermissionsViewAllForeignKeyNames | Bool | False |
Field containing PermissionsViewAllForeignKeyNames information. | |
| PermissionsAddWaveNotificationRecipients | Bool | False |
Field containing PermissionsAddWaveNotificationRecipients information. | |
| PermissionsHeadlessCMSAccess | Bool | False |
Field containing PermissionsHeadlessCMSAccess information. | |
| PermissionsUseOrderManagementAPIs | Bool | False |
Field containing PermissionsUseOrderManagementAPIs information. | |
| PermissionsEditUnmanagedOrderSummaries | Bool | False |
Field containing PermissionsEditUnmanagedOrderSummaries information. | |
| PermissionsLMEndMessagingSessionUserPerm | Bool | False |
Field containing PermissionsLMEndMessagingSessionUserPerm information. | |
| PermissionsConsentApiUpdate | Bool | False |
Date associated with PermissionsConsentApiUp. | |
| PermissionsPaymentsAPIUser | Bool | False |
Field containing PermissionsPaymentsAPIUser information. | |
| PermissionsAccessContentBuilder | Bool | False |
Field containing PermissionsAccessContentBuilder information. | |
| PermissionsAccountSwitcherUser | Bool | False |
Field containing PermissionsAccountSwitcherUser information. | |
| PermissionsViewAnomalyEvents | Bool | False |
Field containing PermissionsViewAnomalyEvents information. | |
| PermissionsManageC360AConnections | Bool | False |
Field containing PermissionsManageC360AConnections information. | |
| PermissionsManageReleaseUpdates | Bool | False |
Field containing PermissionsManageReleaseUpdates information. | |
| PermissionsViewAllProfiles | Bool | False |
Field containing PermissionsViewAllProfiles information. | |
| PermissionsSkipIdentityConfirmation | Bool | False |
Field containing PermissionsSkipIdentityConfirmation information. | |
| PermissionsLearningManager | Bool | False |
Field containing PermissionsLearningManager information. | |
| PermissionsSendCustomNotifications | Bool | False |
Field containing PermissionsSendCustomNotifications information. | |
| PermissionsPackaging2Delete | Bool | False |
Field containing PermissionsPackaging2Delete information. | |
| PermissionsUseOmnichannelInventoryAPIs | Bool | False |
Field containing PermissionsUseOmnichannelInventoryAPIs information. | |
| PermissionsViewRestrictionAndScopingRules | Bool | False |
Field containing PermissionsViewRestrictionAndScopingRules information. | |
| PermissionsFSCComprehensiveUserAccess | Bool | False |
Field containing PermissionsFSCComprehensiveUserAccess information. | |
| PermissionsMarketingAdmin | Bool | False |
Field containing PermissionsMarketingAdmin information. | |
| PermissionsBotManageBots | Bool | False |
Field containing PermissionsBotManageBots information. | |
| PermissionsBotManageBotsTrainingData | Bool | False |
Field containing PermissionsBotManageBotsTrainingData information. | |
| PermissionsEditDeliveryInformation | Bool | False |
Field containing PermissionsEditDeliveryInformation information. | |
| PermissionsOmnichannelInventorySync | Bool | False |
Field containing PermissionsOmnichannelInventorySync information. | |
| PermissionsManageLearningReporting | Bool | False |
Field containing PermissionsManageLearningReporting information. | |
| PermissionsIsotopeCToCUser | Bool | False |
Field containing PermissionsIsotopeCToCUser information. | |
| PermissionsManagePreferenceCenter | Bool | False |
Field containing PermissionsManagePreferenceCenter information. | |
| PermissionsCanAccessCE | Bool | False |
Field containing PermissionsCanAccessCE information. | |
| PermissionsIsotopeAccess | Bool | False |
Field containing PermissionsIsotopeAccess information. | |
| PermissionsIsotopeLEX | Bool | False |
Field containing PermissionsIsotopeLEX information. | |
| PermissionsQuipMetricsAccess | Bool | False |
Field containing PermissionsQuipMetricsAccess information. | |
| PermissionsQuipUserEngagementMetrics | Bool | False |
Field containing PermissionsQuipUserEngagementMetrics information. | |
| PermissionsTransactionSecurityExempt | Bool | False |
Field containing PermissionsTransactionSecurityExempt information. | |
| PermissionsManageExternalConnections | Bool | False |
Field containing PermissionsManageExternalConnections information. | |
| PermissionsUseSubscriptionEmails | Bool | False |
Field containing PermissionsUseSubscriptionEmails information. | |
| PermissionsManageEmailContent | Bool | False |
Field containing PermissionsManageEmailContent information. | |
| PermissionsAutomateEmailContent | Bool | False |
Field containing PermissionsAutomateEmailContent information. | |
| PermissionsAIViewInsightObjects | Bool | False |
Field containing PermissionsAIViewInsightObjects information. | |
| PermissionsAICreateInsightObjects | Bool | False |
Field containing PermissionsAICreateInsightObjects information. | |
| PermissionsViewMLModels | Bool | False |
Field containing PermissionsViewMLModels information. | |
| PermissionsLifecycleManagementAPIUser | Bool | False |
Field containing PermissionsLifecycleManagementAPIUser information. | |
| PermissionsLeadScoreResultPublisher | Bool | False |
Field containing PermissionsLeadScoreResultPublisher information. | |
| PermissionsManageGlobalPrivacyCenterVO | Bool | False |
Field containing PermissionsManageGlobalPrivacyCenterVO information. | |
| PermissionsNativeWebviewScrolling | Bool | False |
Field containing PermissionsNativeWebviewScrolling information. | |
| PermissionsViewDeveloperName | Bool | False |
Field containing PermissionsViewDeveloperName information. | |
| PermissionsBypassMFAForUiLogins | Bool | False |
Field containing PermissionsBypassMFAForUiLogins information. | |
| PermissionsClientSecretRotation | Bool | False |
Field containing PermissionsClientSecretRotation information. | |
| PermissionsUseOrderSummaryCreateAPI | Bool | False |
Field containing PermissionsUseOrderSummaryCreateAPI information. | |
| PermissionsAccessToServiceProcess | Bool | False |
Field containing PermissionsAccessToServiceProcess information. | |
| PermissionsManageOrchInstsAndWorkItems | Bool | False |
Field containing PermissionsManageOrchInstsAndWorkItems information. | |
| PermissionsCMSECEAuthoringAccess | Bool | False |
Field containing PermissionsCMSECEAuthoringAccess information. | |
| PermissionsManageDataspaceScope | Bool | False |
Field containing PermissionsManageDataspaceScope information. | |
| PermissionsConfigureDataspaceScope | Bool | False |
Field containing PermissionsConfigureDataspaceScope information. | |
| PermissionsManageCampaigns | Bool | False |
Field containing PermissionsManageCampaigns information. | |
| PermissionsViewClientSecret | Bool | False |
Field containing PermissionsViewClientSecret information. | |
| PermissionsCdcReportingCreateReports | Bool | False |
Field containing PermissionsCdcReportingCreateReports information. | |
| PermissionsCdcReportingViewReports | Bool | False |
Field containing PermissionsCdcReportingViewReports information. | |
| PermissionsCdcReportingManageFolders | Bool | False |
Field containing PermissionsCdcReportingManageFolders information. | |
| PermissionsExternalClientAppDeveloper | Bool | False |
Field containing PermissionsExternalClientAppDeveloper information. | |
| PermissionsExternalClientAppAdmin | Bool | False |
Field containing PermissionsExternalClientAppAdmin information. | |
| PermissionsExternalClientAppViewer | Bool | False |
Field containing PermissionsExternalClientAppViewer information. | |
| PermissionsOmnichannelInventoryBasic | Bool | False |
Field containing PermissionsOmnichannelInventoryBasic information. | |
| PermissionsDeleteCrMemoAndInvoice | Bool | False |
Field containing PermissionsDeleteCrMemoAndInvoice information. | |
| PermissionsEmbeddedMessagingAgent | Bool | False |
Field containing PermissionsEmbeddedMessagingAgent information. | |
| PermissionsViewNonSetupFlow | Bool | False |
Field containing PermissionsViewNonSetupFlow information. | |
| PermissionsCreateEditNonSetupFlow | Bool | False |
Field containing PermissionsCreateEditNonSetupFlow information. | |
| PermissionsDeleteNonSetupFlow | Bool | False |
Field containing PermissionsDeleteNonSetupFlow information. | |
| PermissionsActivateDeactivateNonSetupFlow | Bool | False |
Field containing PermissionsActivateDeactivateNonSetupFlow information. | |
| PermissionsAddDecisionElmntNonSetupFlow | Bool | False |
Field containing PermissionsAddDecisionElmntNonSetupFlow information. | |
| PermissionsAddCreaRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCreaRecElmntToNonSetupFlow information. | |
| PermissionsAddWaitToNonSetupFlow | Bool | False |
Field containing PermissionsAddWaitToNonSetupFlow information. | |
| PermissionsManageNamedCredentials | Bool | False |
Field containing PermissionsManageNamedCredentials information. | |
| PermissionsAddUpdtRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddUpdtRecElmntToNonSetupFlow information. | |
| PermissionsEditManagedOrderSummaries | Bool | False |
Field containing PermissionsEditManagedOrderSummaries information. | |
| PermissionsCanInitiateMessagingSessions | Bool | False |
Field containing PermissionsCanInitiateMessagingSessions information. | |
| PermissionsAuthorizePayments | Bool | False |
Field containing PermissionsAuthorizePayments information. | |
| PermissionsCaptureAndReversePayments | Bool | False |
Field containing PermissionsCaptureAndReversePayments information. | |
| PermissionsCombAuthAndCapPayments | Bool | False |
Field containing PermissionsCombAuthAndCapPayments information. | |
| PermissionsRefundPayments | Bool | False |
Field containing PermissionsRefundPayments information. | |
| PermissionsViewPayments | Bool | False |
Field containing PermissionsViewPayments information. | |
| PermissionsMakePayments | Bool | False |
Field containing PermissionsMakePayments information. | |
| PermissionsManageDataMaskPolicies | Bool | False |
Field containing PermissionsManageDataMaskPolicies information. | |
| PermissionsCanUpdateEmailMessage | Bool | False |
Field containing PermissionsCanUpdateEmailMessage information. | |
| PermissionsDownloadPackageVersionZips | Bool | False |
Field containing PermissionsDownloadPackageVersionZips information. | |
| PermissionsViewContentTaxonomy | Bool | False |
Field containing PermissionsViewContentTaxonomy information. | |
| PermissionsManageContentTaxonomy | Bool | False |
Field containing PermissionsManageContentTaxonomy information. | |
| PermissionsReassignOrchestrationWorkItems | Bool | False |
Field containing PermissionsReassignOrchestrationWorkItems information. | |
| PermissionsManageOrchestrationRuns | Bool | False |
Field containing PermissionsManageOrchestrationRuns information. | |
| PermissionsDigitalLendingUser | Bool | False |
Field containing PermissionsDigitalLendingUser information. | |
| PermissionsSendEmail | Bool | False |
Field containing PermissionsSendEmail information. | |
| PermissionsPreviewTestSendEmail | Bool | False |
Field containing PermissionsPreviewTestSendEmail information. | |
| PermissionsManageEmailMessagingSetup | Bool | False |
Field containing PermissionsManageEmailMessagingSetup information. | |
| PermissionsViewEmailMessagingSetup | Bool | False |
Field containing PermissionsViewEmailMessagingSetup information. | |
| PermissionsManageCertificatesExpiration | Bool | False |
Field containing PermissionsManageCertificatesExpiration information. | |
| PermissionsEnableIPFSUpload | Bool | False |
Field containing PermissionsEnableIPFSUpload information. | |
| PermissionsEnableBCTransactionPolling | Bool | False |
Field containing PermissionsEnableBCTransactionPolling information. | |
| PermissionsLobbyManagementUserAccess | Bool | False |
Field containing PermissionsLobbyManagementUserAccess information. | |
| PermissionsUMAWebTrackingSetup | Bool | False |
Field containing PermissionsUMAWebTrackingSetup information. | |
| PermissionsAddGetRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddGetRecElmntToNonSetupFlow information. | |
| PermissionsAddLoopElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddLoopElmntToNonSetupFlow information. | |
| PermissionsAddAsgntElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddAsgntElmntToNonSetupFlow information. | |
| PermissionsAddSubflowElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddSubflowElmntToNonSetupFlow information. | |
| PermissionsMonitorLoginHistory | Bool | False |
Field containing PermissionsMonitorLoginHistory information. | |
| PermissionsAddCollFltrElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCollFltrElmntToNonSetupFlow information. | |
| PermissionsAddCollSrtElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddCollSrtElmntToNonSetupFlow information. | |
| PermissionsAddDelRecElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddDelRecElmntToNonSetupFlow information. | |
| PermissionsOpportunityInfluence | Bool | False |
Field containing PermissionsOpportunityInfluence information. | |
| PermissionsConsentBannerSettingsSetup | Bool | False |
Field containing PermissionsConsentBannerSettingsSetup information. | |
| PermissionsEnhancedSalesMobileExp | Bool | False |
Field containing PermissionsEnhancedSalesMobileExp information. | |
| PermissionsCanViewDataPrepRecipe | Bool | False |
Field containing PermissionsCanViewDataPrepRecipe information. | |
| PermissionsSimpleCsvDataImportUser | Bool | False |
Field containing PermissionsSimpleCsvDataImportUser information. | |
| PermissionsAdvancedCsvDataImportUser | Bool | False |
Field containing PermissionsAdvancedCsvDataImportUser information. | |
| PermissionsUmaQueryCMSEmailContent | Bool | False |
Field containing PermissionsUmaQueryCMSEmailContent information. | |
| PermissionsAccessToComplaintMgmt | Bool | False |
Field containing PermissionsAccessToComplaintMgmt information. | |
| PermissionsAccessToDisputeManagement | Bool | False |
Field containing PermissionsAccessToDisputeManagement information. | |
| PermissionsUMAStandaloneUserPerm | Bool | False |
Field containing PermissionsUMAStandaloneUserPerm information. | |
| PermissionsPersonalizedFinanceUserAccess | Bool | False |
Field containing PermissionsPersonalizedFinanceUserAccess information. | |
| PermissionsUmaEditConsentSettings | Bool | False |
Field containing PermissionsUmaEditConsentSettings information. | |
| PermissionsCustomAppsOnFSMobile | Bool | False |
Field containing PermissionsCustomAppsOnFSMobile information. | |
| PermissionsStageManagementDesignUser | Bool | False |
Field containing PermissionsStageManagementDesignUser information. | |
| PermissionsSegmentIntelligenceUser | Bool | False |
Field containing PermissionsSegmentIntelligenceUser information. | |
| PermissionsFSCArcGraphCommunityUser | Bool | False |
Field containing PermissionsFSCArcGraphCommunityUser information. | |
| PermissionsManageCdpMlModels | Bool | False |
Field containing PermissionsManageCdpMlModels information. | |
| PermissionsDigitalLendingAdminUser | Bool | False |
Field containing PermissionsDigitalLendingAdminUser information. | |
| PermissionsActivateSystemModeFlows | Bool | False |
Field containing PermissionsActivateSystemModeFlows information. | |
| PermissionsViewAllNonSetupFlows | Bool | False |
Field containing PermissionsViewAllNonSetupFlows information. | |
| PermissionsMcScoringRulesConfig | Bool | False |
Field containing PermissionsMcScoringRulesConfig information. | |
| PermissionsPersonalizationPlatform | Bool | False |
Field containing PermissionsPersonalizationPlatform information. | |
| PermissionsLeadInspectorUser | Bool | False |
Field containing PermissionsLeadInspectorUser information. | |
| PermissionsContactInspectorUser | Bool | False |
Field containing PermissionsContactInspectorUser information. | |
| PermissionsManageIntegrationConnections | Bool | False |
Field containing PermissionsManageIntegrationConnections information. | |
| PermissionsTableauCreateDashboard | Bool | False |
Field containing PermissionsTableauCreateDashboard information. | |
| PermissionsTableauViewDashboard | Bool | False |
Field containing PermissionsTableauViewDashboard information. | |
| PermissionsEinsteinCopilotUser | Bool | False |
Field containing PermissionsEinsteinCopilotUser information. | |
| PermissionsEinsteinCopilotBuilder | Bool | False |
Field containing PermissionsEinsteinCopilotBuilder information. | |
| PermissionsUseCreateOrderSummary | Bool | False |
Field containing PermissionsUseCreateOrderSummary information. | |
| PermissionsUseCreateCreditMemo | Bool | False |
Field containing PermissionsUseCreateCreditMemo information. | |
| PermissionsUseEnsureFunds | Bool | False |
Field containing PermissionsUseEnsureFunds information. | |
| PermissionsUseOrderItemSummaryCancel | Bool | False |
Field containing PermissionsUseOrderItemSummaryCancel information. | |
| PermissionsUseOrderItemSummaryReturn | Bool | False |
Field containing PermissionsUseOrderItemSummaryReturn information. | |
| PermissionsManageFilesAndAttachments | Bool | False |
Field containing PermissionsManageFilesAndAttachments information. | |
| PermissionsAddTrfmElmntToNonSetupFlow | Bool | False |
Field containing PermissionsAddTrfmElmntToNonSetupFlow information. | |
| PermissionsMobileMessagingAgent | Bool | False |
Field containing PermissionsMobileMessagingAgent information. | |
| PermissionsTableauCreateVisualization | Bool | False |
Field containing PermissionsTableauCreateVisualization information. | |
| PermissionsTableauViewVisualization | Bool | False |
Field containing PermissionsTableauViewVisualization information. | |
| PermissionsManageCustomDomains | Bool | False |
Field containing PermissionsManageCustomDomains information. | |
| PermissionsEngagementConfigUser | Bool | False |
Field containing PermissionsEngagementConfigUser information. | |
| PermissionsPersonalizationIntelUser | Bool | False |
Field containing PermissionsPersonalizationIntelUser information. | |
| PermissionsAttributionModelUser | Bool | False |
Field containing PermissionsAttributionModelUser information. | |
| PermissionsTableauCreateWorkspace | Bool | False |
Field containing PermissionsTableauCreateWorkspace information. | |
| PermissionsTableauViewWorkspace | Bool | False |
Field containing PermissionsTableauViewWorkspace information. | |
| PermissionsManageBriefs | Bool | False |
Field containing PermissionsManageBriefs information. | |
| PermissionsSalesInsightsUser | Bool | False |
Field containing PermissionsSalesInsightsUser information. | |
| PermissionsCanSendInitialSMSToIndividual | Bool | False |
Field containing PermissionsCanSendInitialSMSToIndividual information. | |
| PermissionsAccessDisputePrompts | Bool | False |
Field containing PermissionsAccessDisputePrompts information. | |
| PermissionsQueryNonVetoedFiles | Bool | False |
Field containing PermissionsQueryNonVetoedFiles information. | |
| PermissionsMetadataStudioUser | Bool | False |
Field containing PermissionsMetadataStudioUser information. | |
| PermissionsAddPathExprmElmntNonSetupFlow | Bool | False |
Field containing PermissionsAddPathExprmElmntNonSetupFlow information. | |
| PermissionsDigitalLendingWorkbench | Bool | False |
Field containing PermissionsDigitalLendingWorkbench information. | |
| PermissionsDigitalLendingEditReadOnly | Bool | False |
Field containing PermissionsDigitalLendingEditReadOnly information. | |
| PermissionsUseCanCancelInProgressChange | Bool | False |
Field containing PermissionsUseCanCancelInProgressChange information. | |
| PermissionsPrmExtIntPrtnrAdminUser | Bool | False |
Field containing PermissionsPrmExtIntPrtnrAdminUser information. | |
| PermissionsEinsteinAgentPlatformBuilder | Bool | False |
Field containing PermissionsEinsteinAgentPlatformBuilder information. | |
| PermissionsUseServicePartReturn | Bool | False |
Field containing PermissionsUseServicePartReturn information. | |
| PermissionsViewUMACalendar | Bool | False |
Field containing PermissionsViewUMACalendar information. | |
| PermissionsHeadlessPublishNudges | Bool | False |
Field containing PermissionsHeadlessPublishNudges information. | |
| PermissionsApprovalAdmin | Bool | False |
Field containing PermissionsApprovalAdmin information. | |
| PermissionsApprovalDesigner | Bool | False |
Field containing PermissionsApprovalDesigner information. | |
| PermissionsAccessServiceEinstein | Bool | False |
Field containing PermissionsAccessServiceEinstein information. | |
| PermissionsViewRecommendations | Bool | False |
Field containing PermissionsViewRecommendations information. | |
| PermissionsPrismPlaygroundUser | Bool | False |
Field containing PermissionsPrismPlaygroundUser information. | |
| PermissionsModifyAllPolicyCenterPolicies | Bool | False |
Field containing PermissionsModifyAllPolicyCenterPolicies information. | |
| PermissionsViewAllPolicyCenterPolicies | Bool | False |
Field containing PermissionsViewAllPolicyCenterPolicies information. | |
| PermissionsAccessSfDrive | Bool | False |
Field containing PermissionsAccessSfDrive information. | |
| PermissionsAppFrameworkManageApp | Bool | False |
Field containing PermissionsAppFrameworkManageApp information. | |
| PermissionsAppFrameworkViewApp | Bool | False |
Field containing PermissionsAppFrameworkViewApp information. | |
| PermissionsMCGSetupUserPerm | Bool | False |
Field containing PermissionsMCGSetupUserPerm information. | |
| PermissionsAgentforceServiceAgentUser | Bool | False |
Field containing PermissionsAgentforceServiceAgentUser information. | |
| PermissionsManageAgentforceServiceAgent | Bool | False |
Field containing PermissionsManageAgentforceServiceAgent information. | |
| PermissionsCanTranslateScrt2Conversation | Bool | False |
Field containing PermissionsCanTranslateScrt2Conversation information. | |
| PermissionsSlackFromTableau | Bool | False |
Field containing PermissionsSlackFromTableau information. | |
| PermissionsTableauShareSnapshot | Bool | False |
Field containing PermissionsTableauShareSnapshot information. | |
| PermissionsAccessBankingServiceAgent | Bool | False |
Field containing PermissionsAccessBankingServiceAgent information. | |
| PermissionsPrismBackofficeUser | Bool | False |
Field containing PermissionsPrismBackofficeUser information. | |
| PermissionsPersonalizationDecisioningUser | Bool | False |
Field containing PermissionsPersonalizationDecisioningUser information. | |
| PermissionsAccessBankingRelationshipAssistance | Bool | False |
Field containing PermissionsAccessBankingRelationshipAssistance information. | |
| PermissionsCanMarketingUserDebugFlow | Bool | False |
Field containing PermissionsCanMarketingUserDebugFlow information. | |
| PermissionsCanDoActAsUser | Bool | False |
Field containing PermissionsCanDoActAsUser information. | |
| PermissionsViewAllFieldsGlobal | Bool | False |
Field containing PermissionsViewAllFieldsGlobal information. | |
| PermissionsManageHerokuAppLink | Bool | False |
Field containing PermissionsManageHerokuAppLink information. | |
| PermissionsUserHasSendToListFilterAccess | Bool | False |
Field containing PermissionsUserHasSendToListFilterAccess information. | |
| PermissionsMngBenVerfForAssistiveAgnt | Bool | False |
Field containing PermissionsMngBenVerfForAssistiveAgnt information. | |
| PermissionsCreateModDGTrigNonSetupFlow | Bool | False |
Field containing PermissionsCreateModDGTrigNonSetupFlow information. | |
| PermissionsAccessPolicyAgent | Bool | False |
Field containing PermissionsAccessPolicyAgent information. | |
| PermissionsMCPMetadataApi | Bool | False |
Field containing PermissionsMCPMetadataApi information. | |
| PermissionsAppFrameworkManageTemplate | Bool | False |
Field containing PermissionsAppFrameworkManageTemplate information. | |
| PermissionsDigitalAgentUser | Bool | False |
Field containing PermissionsDigitalAgentUser information. | |
| PermissionsAccessWealthAdvisorAgent | Bool | False |
Field containing PermissionsAccessWealthAdvisorAgent information. | |
| PermissionsCanApproveUninstalledApps | Bool | False |
Field containing PermissionsCanApproveUninstalledApps information. | |
| PermissionsSetupAgentBuilder | Bool | False |
Field containing PermissionsSetupAgentBuilder information. | |
| PermissionsSetupAgentUser | Bool | False |
Field containing PermissionsSetupAgentUser information. | |
| PermissionsUserCanDeployStore | Bool | False |
Field containing PermissionsUserCanDeployStore information. | |
| PermissionsModifyAccessDenyPolicies | Bool | False |
Field containing PermissionsModifyAccessDenyPolicies information. | |
| PermissionsManageAccessPolicies | Bool | False |
Field containing PermissionsManageAccessPolicies information. | |
| PermissionsViewAccessPolicies | Bool | False |
Field containing PermissionsViewAccessPolicies information. | |
| PermissionsModifyAccessAllowPolicies | Bool | False |
Field containing PermissionsModifyAccessAllowPolicies information. | |
| PermissionsViewOrchestrationsInAutomApp | Bool | False |
Field containing PermissionsViewOrchestrationsInAutomApp information. | |
| PermissionsTerritoryOperations | Bool | False |
Field containing PermissionsTerritoryOperations information. | |
| UserLicenseId | String | False |
UserLicense.Id |
Identifier of the user license type associated with the profile. |
| UserType | String | True |
Category of user associated with the profile, such as Standard or Partner. | |
| CreatedDate | Datetime | True |
Date and time when the profile was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the profile. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the profile. |
| IsSsoEnabled | Bool | False |
Indicates whether the record has the SsoEnabled characteristic. | |
| Description | String | False |
Optional description of the profile's purpose or usage. | |
| LastViewedDate | Datetime | True |
Date and time when the profile record was last viewed. | |
| LastReferencedDate | Datetime | True |
Date and time when the profile was last referenced by another record or process. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the profile. | |
| LastModifiedDate | Datetime | True |
Date and time when the profile was last modified. |
Schema file for Prompt.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PromptAction.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| PromptVersionId | String | False |
ID of the PromptVersion associated with this record. | |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| TimesDisplayed | Int | False |
Field containing TimesDisplayed information. | |
| TimesActionTaken | Int | False |
Field containing TimesActionTaken information. | |
| TimesDismissed | Int | False |
Field containing TimesDismissed information. | |
| LastDisplayDate | Datetime | False |
Date associated with LastDisplay. | |
| LastResult | String | False |
Field containing LastResult information. | |
| LastResultDate | Datetime | False |
Date associated with LastResult. | |
| StepNumber | Int | False |
Step identification number. | |
| StepCount | Int | False |
Number of Step associated with this record. | |
| SnoozeUntil | Datetime | False |
Field containing SnoozeUntil information. | |
| TimesSnoozed | Int | False |
Field containing TimesSnoozed information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PromptError.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| PromptActionId | String | False |
PromptAction.Id |
ID of the PromptAction associated with this record. |
| Type | String | False |
Type of account or classification. | |
| StepNumber | Int | False |
Step identification number. | |
| IsError | Bool | False |
Indicates whether the record has the Error characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for PromptVersion.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ParentId | String | False |
Prompt.Id |
ID of the parent object in the hierarchy. |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| Description | String | False |
Text description of the record. | |
| DisplayType | String | False |
Type classification for Display. | |
| DisplayPosition | String | False |
Field containing DisplayPosition information. | |
| TimesToDisplay | Int | False |
Field containing TimesToDisplay information. | |
| DelayDays | Int | False |
Field containing DelayDays information. | |
| StartDate | Date | False |
Start date for the record or activity. | |
| EndDate | Date | False |
End date for the record or activity. | |
| UserAccess | String | False |
Field containing UserAccess information. | |
| IsPublished | Bool | False |
Indicates whether the record has the Published characteristic. | |
| PublishedDate | Date | False |
Date associated with Published. | |
| PublishedByUserId | String | False |
User.Id |
ID of the PublishedByUser associated with this record. |
| Header | String | False |
Field containing Header information. | |
| DismissButtonLabel | String | False |
Field containing DismissButtonLabel information. | |
| ShouldDisplayActionButton | Bool | False |
Field containing ShouldDisplayActionButton information. | |
| ActionButtonLabel | String | False |
Field containing ActionButtonLabel information. | |
| ActionButtonLink | String | False |
Field containing ActionButtonLink information. | |
| Title | String | False |
Title of the contact or person, for example CEO or Vice President. | |
| VersionNumber | Int | False |
Version identification number. | |
| TargetPageType | String | False |
Type classification for TargetPage. | |
| TargetPageKey1 | String | False |
Field containing TargetPageKey1 information. | |
| TargetPageKey2 | String | False |
Field containing TargetPageKey2 information. | |
| TargetAppNamespacePrefix | String | False |
Field containing TargetAppNamespacePrefix information. | |
| TargetAppDeveloperName | String | False |
Field containing TargetAppDeveloperName information. | |
| Body | String | False |
The content of the feed item or post. | |
| ShouldIgnoreGlobalDelay | Bool | False |
Field containing ShouldIgnoreGlobalDelay information. | |
| UserProfileAccess | String | False |
Field containing UserProfileAccess information. | |
| VideoLink | String | False |
Field containing VideoLink information. | |
| StepNumber | Int | False |
Step identification number. | |
| ThemeColor | String | False |
Field containing ThemeColor information. | |
| ThemeSaturation | String | False |
Field containing ThemeSaturation information. | |
| TargetPageKey1Ref | String | False |
Field containing TargetPageKey1Ref information. | |
| ImageAltText | String | False |
Field containing ImageAltText information. | |
| ImageId | String | False |
ContentAsset.Id |
ID of the Image associated with this record. |
| ImageLink | String | False |
Field containing ImageLink information. | |
| ImageLocation | String | False |
Field containing ImageLocation information. | |
| TargetPageKey3 | String | False |
Field containing TargetPageKey3 information. | |
| ElementRelativePosition | String | False |
Field containing ElementRelativePosition information. | |
| ReferenceElementContext | String | False |
Field containing ReferenceElementContext information. | |
| TargetPageKey4 | String | False |
Field containing TargetPageKey4 information. | |
| TargetRecordTypeId | String | False |
RecordType.Id |
ID of the TargetRecordType associated with this record. |
| ExperienceContextId | String | False |
Site.Id |
ID of the ExperienceContext associated with this record. |
| ExperienceContextIdType | String | False |
Specifies the type of the 'ExperienceContextId' polymorphic field to use in the statement. | |
| ExperienceContextIdExternalFieldName | String | False |
Specifies the external field name of the 'ExperienceContextId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Experience | String | False |
Field containing Experience information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Prospect.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Title | String | False |
Title of the contact or person, for example CEO or Vice President. | |
| Description | String | False |
Text description of the record. | |
| GenderIdentity | String | False |
Field containing GenderIdentity information. | |
| Street | String | False |
Street address. | |
| City | String | False |
City portion of the address. | |
| State | String | False |
State or province portion of the address. | |
| PostalCode | String | False |
Postal code portion of the address. | |
| Country | String | False |
Country portion of the address. | |
| Latitude | Double | False |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | False |
Used with Latitude to specify the precise geolocation of an address. | |
| GeocodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| Phone | String | False |
Phone number for the contact or account. | |
| String | False |
Email address for the contact or person account. | ||
| LeadSource | String | False |
Source from which the lead was obtained. | |
| Industry | String | False |
Industry that the account belongs to. | |
| Company | String | False |
Field containing Company information. | |
| AnnualRevenue | Decimal | False |
Estimated annual revenue of the account. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| NumberOfEmployees | Int | False |
Number of employees working at the company represented by this account. | |
| ProspectStatus | String | False |
Status of the Prospect. | |
| LastName | String | False |
Last name of the contact or person account. Required for person accounts. | |
| FirstName | String | False |
First name of the contact or person account. | |
| Salutation | String | False |
Honorific abbreviation, word, or phrase to be used in front of the name in greetings. | |
| Name | String | True |
Name of the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| ProspectRecordName | String | True |
Field containing ProspectRecordName information. | |
| IsConverted | Bool | False |
Indicates whether the lead has been converted. | |
| ConvertedDate | Date | True |
Date associated with Converted. | |
| ConvertedLeadId | String | True |
Lead.Id |
ID of the ConvertedLead associated with this record. |
| ConvertedAccountId | String | True |
Account.Id |
ID of the ConvertedAccount associated with this record. |
| ConvertedContactId | String | True |
Contact.Id |
ID of the ConvertedContact associated with this record. |
| ConvertedOpportunityId | String | True |
Opportunity.Id |
ID of the ConvertedOpportunity associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores PushTopic records used for real-time data updates through the Streaming API.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the push topic record. | |
| Name | String | False |
Name of the push topic, used by clients to subscribe to real-time notifications. | |
| Query | String | False |
Salesforce Object Query Language (SOQL) query that defines the data and conditions for triggering notifications. | |
| ApiVersion | Double | False |
API version used to interpret the query and deliver the payload. | |
| IsActive | Bool | False |
Indicates whether the push topic is currently active and sending notifications. | |
| NotifyForFields | String | False |
Specifies whether to notify on changes to all fields or only referenced fields. | |
| NotifyForOperations | String | True |
Defines which operations—such as create, update, delete—should trigger notifications. | |
| Description | String | False |
Text description explaining the purpose or target use case of the push topic. | |
| NotifyForOperationCreate | Bool | False |
Indicates whether a notification should be sent when a record is created. | |
| NotifyForOperationUpdate | Bool | False |
Indicates whether a notification should be sent when a record is updated. | |
| NotifyForOperationDelete | Bool | False |
Indicates whether a notification should be sent when a record is deleted. | |
| NotifyForOperationUndelete | Bool | False |
Indicates whether a notification should be sent when a deleted record is restored. | |
| IsDeleted | Bool | True |
Indicates whether the push topic has been deleted from the system. | |
| CreatedDate | Datetime | True |
Date and time when the push topic was initially created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the push topic. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the push topic. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp reflecting the most recent update to the push topic. | |
| LastModifiedDate | Datetime | True |
Date and time when the push topic was last updated. |
Tracks records assigned to queues, managing workload distribution across teams.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the queue object mapping record. | |
| QueueId | String | False |
Group.Id |
Identifier of the queue (group) that is assigned to handle records of the specified object type. |
| SobjectType | String | False |
API name of the Salesforce object type (such as Case or Lead) assigned to the queue. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the queue-to-object mapping. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the mapping record. |
Schema file for QuickText.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Message | String | False |
Field containing Message information. | |
| Category | String | False |
Field containing Category information. | |
| Channel | String | False |
Field containing Channel information. | |
| IsInsertable | Bool | False |
Indicates whether the record has the Insertable characteristic. | |
| SourceType | String | False |
Type classification for Source. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Represents sales quotes, tracking pricing details and products offered to customers.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the quote record. | |
| IsDeleted | Boolean | True |
Indicates whether the quote has been deleted from the system. | |
| Name | String | False |
Name or title of the quote used to identify it in lists and reports. | |
| CreatedDate | Datetime | True |
Date and time when the quote was initially created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the quote. |
| LastModifiedDate | Datetime | True |
Date and time when the quote was most recently updated. | |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the quote. |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the quote record. | |
| LastViewedDate | Datetime | True |
Date and time when the quote was last viewed by a user. | |
| LastReferencedDate | Datetime | True |
Date and time when the quote was last referenced in a related record or automation. | |
| OpportunityId | String | False |
Opportunity.Id |
Identifier of the opportunity associated with this quote. |
| Pricebook2Id | String | False |
Pricebook2.Id |
Identifier of the price book used to determine pricing for the quote. |
| ContactId | String | False |
Contact.Id |
Identifier of the contact associated with this quote, typically the customer. |
| QuoteNumber | String | True |
Auto-generated number that uniquely identifies the quote for tracking purposes. | |
| IsSyncing | Boolean | True |
Indicates whether the quote is currently syncing with the opportunity record. | |
| ShippingHandling | Double | False |
Total shipping and handling charges included in the quote. | |
| Tax | Double | False |
Total tax amount applied to the quote. | |
| Status | String | False |
Current status of the quote, such as Draft, Presented, or Accepted. | |
| ExpirationDate | Datetime | False |
Date when the quote expires and is no longer valid. | |
| Description | String | False |
Optional text description providing additional context about the quote. | |
| Subtotal | Double | True |
Sum of line item totals before tax, discount, or shipping is applied. | |
| TotalPrice | Double | True |
Total price for the quote after applying discounts but before tax and shipping. | |
| LineItemCount | Int | True |
Number of product or service line items included in the quote. | |
| BillingStreet | String | False |
Street address where the bill will be sent. | |
| BillingCity | String | False |
City associated with the billing address. | |
| BillingState | String | False |
State or province associated with the billing address. | |
| BillingPostalCode | String | False |
Postal or ZIP code for the billing address. | |
| BillingCountry | String | False |
Country for the billing address. | |
| BillingLatitude | Double | False |
Latitude coordinate for geolocation of the billing address. | |
| BillingLongitude | Double | False |
Longitude coordinate for geolocation of the billing address. | |
| ShippingStreet | String | False |
Street address where the products or services will be delivered. | |
| ShippingCity | String | False |
City associated with the shipping address. | |
| ShippingState | String | False |
State or province for the shipping destination. | |
| ShippingPostalCode | String | False |
Postal or ZIP code for the shipping address. | |
| ShippingCountry | String | False |
Country for the shipping address. | |
| ShippingLatitude | Double | False |
Latitude coordinate for geolocation of the shipping address. | |
| ShippingLongitude | Double | False |
Longitude coordinate for geolocation of the shipping address. | |
| QuoteToStreet | String | False |
Street address of the primary recipient for the quote. | |
| QuoteToCity | String | False |
City associated with the quote recipient's address. | |
| QuoteToState | String | False |
State or province for the quote recipient's address. | |
| QuoteToPostalCode | String | False |
Postal or ZIP code for the quote recipient's address. | |
| QuoteToCountry | String | False |
Country for the quote recipient's address. | |
| QuoteToLatitude | Double | False |
Latitude coordinate for geolocation of the quote recipient's address. | |
| QuoteToLongitude | Double | False |
Longitude coordinate for geolocation of the quote recipient's address. | |
| AdditionalStreet | String | False |
Street address for an additional recipient or reference location. | |
| AdditionalCity | String | False |
City for the additional recipient or secondary location. | |
| AdditionalState | String | False |
State or province for the additional recipient's address. | |
| AdditionalPostalCode | String | False |
Postal or ZIP code for the additional recipient's address. | |
| AdditionalCountry | String | False |
Country for the additional recipient's address. | |
| AdditionalLatitude | Double | False |
Latitude coordinate for geolocation of the additional address. | |
| AdditionalLongitude | Double | False |
Longitude coordinate for geolocation of the additional address. | |
| BillingName | String | False |
Name of the individual or company listed on the billing address. | |
| ShippingName | String | False |
Name of the individual or company receiving the shipment. | |
| QuoteToName | String | False |
Name of the primary individual or entity receiving the quote. | |
| AdditionalName | String | False |
Name associated with the additional recipient or location. | |
| String | False |
Email address used for quote-related communication. | ||
| Phone | String | False |
Primary phone number associated with the quote. | |
| Fax | String | False |
Fax number provided for quote correspondence, if applicable. | |
| Discount | Double | True |
Total discount applied to the quote across all line items. | |
| GrandTotal | Double | True |
Final total amount of the quote, including tax, discounts, and shipping. |
Stores quote documents generated from Salesforce, including PDFs sent to customers.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the quote document record. | |
| Name | String | True |
Name of the quote document, typically used for reference or display. | |
| QuoteId | String | False |
Quote.Id |
Identifier of the quote associated with this document. |
| Document | String | False |
PDF content of the quote document, typically used for customer presentation or recordkeeping. | |
| GrandTotal | Double | True |
Final total amount displayed on the quote document, including discounts, taxes, and shipping. | |
| Discount | Double | True |
Total discount applied on the quote as shown in the document. | |
| IsDeleted | Boolean | True |
Indicates whether the quote document has been deleted from the system. | |
| CreatedDate | Datetime | True |
Date and time when the quote document was generated or uploaded. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the quote document. |
| LastModifiedDate | Datetime | True |
Date and time when the quote document was last updated. | |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the quote document. |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the quote document record. |
Captures Chatter activity, including posts and updates, related to Quote records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the feed item related to a quote. | |
| ParentId | String | True |
Quote.Id |
Identifier of the quote record that this feed item is associated with. |
| Type | String | True |
Specifies the type of feed item, such as a text post, link, or content share. | |
| CreatedById | String | True |
Identifier of the user who created the feed item. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. | |
| IsDeleted | Boolean | True |
Indicates whether the feed item has been deleted from the system. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the feed item. | |
| CommentCount | Int | True |
Total number of comments associated with this feed item. | |
| LikeCount | Int | True |
Total number of likes the feed item has received. | |
| Title | String | True |
Title or subject line of the feed item, if applicable. | |
| Body | String | True |
Main content or message body of the feed item. | |
| LinkUrl | String | True |
URL of any external or internal link shared in the feed item. | |
| RelatedRecordId | String | True |
Identifier of a related record referenced in the feed item. | |
| ContentData | String | True |
Encoded binary data of the file attached to the feed item. | |
| ContentFileName | String | True |
File name of the content attached to the feed item. | |
| ContentDescription | String | True |
Description of the file or content included in the feed item. | |
| ContentType | String | True |
MIME type of the attached file, such as application/pdf or image/jpeg. | |
| ContentSize | Int | True |
Size of the attached content file in bytes. | |
| InsertedById | String | True |
Identifier of the user or process that inserted the feed item, which may differ from the creator. |
Tracks individual products or services included in a Quote, managing pricing and quantities.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the quote line item record. | |
| IsDeleted | Boolean | True |
Indicates whether the quote line item has been deleted from the system. | |
| LineNumber | String | True |
Sequential number used to order line items within a quote. | |
| CreatedDate | Datetime | True |
Date and time when the quote line item was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the quote line item. |
| LastModifiedDate | Datetime | True |
Date and time when the quote line item was last modified. | |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last updated the quote line item. |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the line item. | |
| QuoteId | String | False |
Quote.Id |
Identifier of the quote this line item is associated with. |
| PricebookEntryId | String | False |
Identifier of the price book entry representing the product or service. | |
| Quantity | Double | False |
Number of units for the product or service included in the quote. | |
| UnitPrice | Double | False |
Sales price per unit for this product or service. | |
| Discount | Double | False |
Discount amount applied to this line item. | |
| Description | String | False |
Free-text description or notes specific to this line item. | |
| ServiceDate | Datetime | False |
Date on which the service is to be performed or the product is to be delivered. | |
| SortOrder | Int | True |
Numeric value used to control the display order of line items on the quote. | |
| ListPrice | Double | True |
Base list price for the product or service before any discounts. | |
| Subtotal | Double | True |
Total price for the line item before tax, based on unit price and quantity. | |
| TotalPrice | Double | True |
Final price for the line item after discount is applied. |
Stores records recently accessed by a user for quick retrieval and navigation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the recently viewed record. | |
| Name | String | True |
Full name or display name of the user or record that was recently viewed. | |
| LastName | String | True |
Last name of the user or person associated with the recently viewed record. | |
| FirstName | String | True |
First name of the user or person associated with the recently viewed record. | |
| Type | String | True |
Object type of the recently viewed record, such as Account, Contact, or Opportunity. | |
| Alias | String | True |
Shortened name or nickname used to reference the user in Salesforce. | |
| UserRoleId | String | True |
UserRole.Id |
Identifier of the role assigned to the user, defining access levels and hierarchy. |
| RecordTypeId | String | True |
RecordType.Id |
Identifier of the record type, used to determine page layout and picklist values. |
| IsActive | Bool | True |
Indicates whether the user or record is currently active. | |
| ProfileId | String | True |
Profile.Id |
Identifier of the profile assigned to the user, which defines their permissions. |
| Title | String | True |
Job title or designation associated with the user or contact. | |
| String | True |
Email address associated with the user or contact. | ||
| Phone | String | True |
Phone number listed for the user or contact. | |
| NameOrAlias | String | True |
Field containing NameOrAlias information. | |
| LastViewedDate | Datetime | False |
Date and time when the record was last viewed by the current user. | |
| LastReferencedDate | Datetime | False |
Date and time when the record was last referenced in a related interaction. | |
| Language | String | True |
Language of the record or user interface. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for Recommendation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ActionReference | String | False |
Field containing ActionReference information. | |
| Description | String | False |
Text description of the record. | |
| ImageId | String | False |
ContentAsset.Id |
ID of the Image associated with this record. |
| AcceptanceLabel | String | False |
Field containing AcceptanceLabel information. | |
| RejectionLabel | String | False |
Field containing RejectionLabel information. | |
| IsActionActive | Bool | True |
Indicates whether the record has the ActionActive characteristic. | |
| ExternalId | String | False |
External ID from another system. | |
| RecommendationKey | String | False |
Field containing RecommendationKey information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for RecommendationResponse.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| OnBehalfOf | String | False |
Field containing OnBehalfOf information. | |
| OnBehalfOfType | String | True |
Type classification for OnBehalfOf. | |
| OnBehalfOfName | String | True |
Field containing OnBehalfOfName information. | |
| RecommendationKey | String | False |
Field containing RecommendationKey information. | |
| RecommendationType | String | True |
Type classification for Recommendation. | |
| RecommendationName | String | False |
Field containing RecommendationName information. | |
| ActionReference | String | False |
Field containing ActionReference information. | |
| Response | String | False |
Field containing Response information. | |
| StrategyReference | String | False |
Field containing StrategyReference information. | |
| StrategyVersion | String | True |
Field containing StrategyVersion information. | |
| ContextRecord | String | False |
Field containing ContextRecord information. | |
| ContextRecordType | String | True |
Type classification for ContextRecord. | |
| ContextRecordName | String | True |
Field containing ContextRecordName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for RecordAction.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| RecordId | String | False |
ID of the Record associated with this record. | |
| FlowDefinition | String | False |
Field containing FlowDefinition information. | |
| FlowInterviewId | String | False |
ID of the FlowInterview associated with this record. | |
| Order | Int | False |
Field containing Order information. | |
| Status | String | False |
Status of the record. | |
| Pinned | String | False |
Field containing Pinned information. | |
| ActionType | String | False |
Type classification for Action. | |
| ActionDefinition | String | False |
Field containing ActionDefinition information. | |
| IsMandatory | Bool | False |
Indicates whether the record has the Mandatory characteristic. | |
| IsUiRemoveHidden | Bool | False |
Indicates whether the record has the UiRemoveHidden characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Defines different record types within an object, allowing for customized page layouts and processes.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record type. | |
| Name | String | False |
Label or display name of the record type shown to users. | |
| DeveloperName | String | False |
API name of the record type used in code and configuration. | |
| NamespacePrefix | String | True |
Namespace prefix for the record type, typically used in managed packages. | |
| Description | String | False |
Optional description explaining the purpose or use case for the record type. | |
| BusinessProcessId | String | False |
Identifier of the business process associated with this record type, relevant for objects like Opportunity or Case. | |
| SobjectType | String | False |
API name of the Salesforce object that this record type belongs to. | |
| IsActive | Bool | False |
Indicates whether the record type is currently active and available for use. | |
| IsPersonType | Bool | True |
Indicates whether the record has the PersonType characteristic. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the record type. |
| CreatedDate | Datetime | True |
Date and time when the record type was created. | |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the record type. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the record type. | |
| LastModifiedDate | Datetime | True |
Date and time when the record type was last updated. |
Schema file for RedirectWhitelistUrl.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Url | String | False |
Field containing Url information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Refund.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| RefundNumber | String | True |
Refund identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Type | String | False |
Type of account or classification. | |
| PaymentGroupId | String | False |
PaymentGroup.Id |
ID of the PaymentGroup associated with this record. |
| ProcessingMode | String | False |
Mode used for processing the payment. | |
| Amount | Decimal | False |
Estimated total sale amount. | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| PaymentMethodId | String | False |
ID of the payment method used. | |
| Comments | String | False |
Field containing Comments information. | |
| Status | String | False |
Status of the record. | |
| GatewayRefNumber | String | False |
GatewayRef identification number. | |
| ClientContext | String | True |
Field containing ClientContext information. | |
| GatewayResultCode | String | False |
Result code returned by the payment gateway. | |
| GatewayResultCodeDescription | String | False |
Field containing GatewayResultCodeDescription information. | |
| SfResultCode | String | False |
Salesforce-specific result code for the transaction. | |
| GatewayDate | Datetime | False |
Date associated with Gateway. | |
| IpAddress | String | False |
Field containing IpAddress information. | |
| MacAddress | String | False |
Field containing MacAddress information. | |
| Phone | String | False |
Phone number for the contact or account. | |
| String | False |
Email address for the contact or person account. | ||
| EffectiveDate | Datetime | False |
Date associated with Effective. | |
| Date | Datetime | False |
Date associated with . | |
| CancellationEffectiveDate | Datetime | False |
Indicates whether the user or record can perform cellationEffectiveDate action. | |
| CancellationDate | Datetime | False |
Indicates whether the user or record can perform cellationDate action. | |
| CancellationGatewayRefNumber | String | False |
Indicates whether the user or record can perform cellationGatewayRefNumber action. | |
| CancellationGatewayResultCode | String | False |
Indicates whether the user or record can perform cellationGatewayResultCode action. | |
| CancellationSfResultCode | String | False |
Indicates whether the user or record can perform cellationSfResultCode action. | |
| CancellationGatewayDate | Datetime | False |
Indicates whether the user or record can perform cellationGatewayDate action. | |
| PaymentGatewayId | String | False |
ID of the PaymentGateway associated with this record. | |
| TotalApplied | Decimal | True |
Field containing TotalApplied information. | |
| TotalUnapplied | Decimal | True |
Field containing TotalUnapplied information. | |
| NetApplied | Decimal | True |
Field containing NetApplied information. | |
| Balance | Decimal | True |
Field containing Balance information. | |
| OrderPaymentSummaryId | String | False |
ID of the OrderPaymentSummary associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for RefundLinePayment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| RefundLinePaymentNumber | String | True |
RefundLinePayment identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| PaymentId | String | False |
Payment.Id |
ID of the Payment associated with this record. |
| RefundId | String | False |
Refund.Id |
ID of the Refund associated with this record. |
| Amount | Decimal | False |
Estimated total sale amount. | |
| Type | String | False |
Type of account or classification. | |
| HasBeenUnapplied | String | False |
Indicates whether the record has BeenUnapplied. | |
| Comments | String | False |
Field containing Comments information. | |
| Date | Datetime | False |
Date associated with . | |
| AppliedDate | Datetime | False |
Date associated with Applied. | |
| EffectiveDate | Datetime | False |
Date associated with Effective. | |
| UnappliedDate | Datetime | False |
Date associated with Unapplied. | |
| AssociatedAccountId | String | False |
Account.Id |
ID of the AssociatedAccount associated with this record. |
| AssociatedRefundLinePaymentId | String | False |
ID of the AssociatedRefundLinePayment associated with this record. | |
| RefundBalance | Decimal | True |
Field containing RefundBalance information. | |
| PaymentBalance | Decimal | True |
Field containing PaymentBalance information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ReplyEmailSettings.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| DomainName | String | False |
Field containing DomainName information. | |
| FwdEmailAddress | String | False |
Field containing FwdEmailAddress information. | |
| IsEmailForwardingEnabled | Bool | False |
Indicates whether the record has the EmailForwardingEnabled characteristic. | |
| IsAutoReplyEnabled | Bool | False |
Indicates whether the record has the AutoReplyEnabled characteristic. | |
| AutoReplyMessage | String | False |
Field containing AutoReplyMessage information. | |
| IsUnsubscribeManualRequestsEnabled | Bool | False |
Indicates whether the record has the UnsubscribeManualRequestsEnabled characteristic. | |
| UnsubscribeTerms | String | False |
Field containing UnsubscribeTerms information. | |
| IsDeleteAutoRepliesEnabled | Bool | False |
Indicates whether the record has the DeleteAutoRepliesEnabled characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ReportAnomalyEventStoreFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Captures Chatter activity, including posts and updates, related to Report records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the feed item associated with a report. | |
| ParentId | String | True |
Report.Id |
Identifier of the report that this feed item is linked to. |
| Type | String | True |
Specifies the type of feed item, such as a post, file, or link. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted from the system. | |
| CommentCount | Int | True |
Total number of comments on the feed item. | |
| LikeCount | Int | True |
Total number of likes the feed item has received. | |
| Title | String | True |
Title or headline for the feed item, if applicable. | |
| Body | String | True |
Main content or message of the feed post. | |
| LinkUrl | String | True |
URL shared within the feed item, linking to internal or external content. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
Identifier of another record referenced within the feed item. | |
| InsertedById | String | True |
User.Id |
Identifier of the user or process that inserted the feed item into the report's feed. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for RuleTerritory2Association.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Territory2Id | String | False |
Territory2.Id |
ID of the Territory2 associated with this record. |
| RuleId | String | False |
ID of the Rule associated with this record. | |
| IsInherited | Bool | False |
Indicates whether the record has the Inherited characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for SalesChannel.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| SalesChannelName | String | False |
Field containing SalesChannelName information. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ExternalChannelNumber | String | False |
ExternalChannel identification number. | |
| Type | String | False |
Type of account or classification. | |
| TypeCategory | String | True |
Field containing TypeCategory information. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for SalesChannelFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
SalesChannel.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Represents legacy custom controls used in older Salesforce environments before Visualforce and Lightning components.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the S-Control record. | |
| Name | String | False |
Display label for the S-Control as shown in the Salesforce UI. | |
| DeveloperName | String | False |
API name of the S-Control, used for referencing in code or configuration. | |
| Description | String | False |
Optional text describing the purpose or functionality of the S-Control. | |
| EncodingKey | String | False |
Character encoding used for the content, such as UTF-8 or ISO-8859-1. | |
| HtmlWrapper | String | False |
HTML body of the S-Control that defines its structure and content. | |
| Filename | String | False |
File name associated with the S-Control's source file, if applicable. | |
| BodyLength | Int | True |
Length of the binary content in bytes. | |
| Binary | String | False |
Encoded binary content of the S-Control, often used for scripts or components. | |
| ContentSource | String | False |
Indicates how the content is sourced, such as from a URL or inline HTML. | |
| SupportsCaching | Bool | False |
Specifies whether the S-Control supports being pre-built and cached in the page. | |
| NamespacePrefix | String | True |
Namespace prefix used for S-Controls in managed packages. | |
| CreatedDate | Datetime | True |
Date and time when the S-Control was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the S-Control. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the S-Control. |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the S-Control was last modified. |
Schema file for Scorecard.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Description | String | False |
Text description of the record. | |
| TargetEntity | String | False |
Field containing TargetEntity information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ScorecardAssociation.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| ScorecardId | String | False |
Scorecard.Id |
ID of the Scorecard associated with this record. |
| TargetEntityId | String | False |
Account.Id |
ID of the TargetEntity associated with this record. |
| TargetEntityIdType | String | False |
Specifies the type of the 'TargetEntityId' polymorphic field to use in the statement. | |
| TargetEntityIdExternalFieldName | String | False |
Specifies the external field name of the 'TargetEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ScorecardMetric.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ScorecardId | String | False |
Scorecard.Id |
ID of the Scorecard associated with this record. |
| Description | String | False |
Text description of the record. | |
| Category | String | False |
Field containing Category information. | |
| ReportId | String | False |
Report.Id |
ID of the Report associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for SearchPromotionRule.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Query | String | False |
SOQL query that was executed. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for SecurityCustomBaseline.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Baseline | String | False |
Field containing Baseline information. | |
| IsDefault | Bool | False |
Indicates whether the record has the Default characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Manages self-service portal users who can log cases and access knowledge articles.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the self-service user record. | |
| LastName | String | False |
Last name of the self-service user. | |
| FirstName | String | False |
First name of the self-service user. | |
| Name | String | True |
Full name of the self-service user, typically a combination of first and last names. | |
| Username | String | False |
Login name used by the self-service user to access the portal. | |
| String | False |
Email address associated with the self-service user account. | ||
| IsActive | Boolean | False |
Indicates whether the self-service user account is currently active. | |
| TimeZoneSidKey | String | False |
Time zone setting used for displaying times to the self-service user. | |
| LocaleSidKey | String | False |
Locale setting that determines formatting for dates, times, and numbers. | |
| ContactId | String | False |
Contact.Id |
Identifier of the contact record associated with this self-service user. |
| LanguageLocaleKey | String | False |
Language locale used to determine the user's default language in the portal. | |
| SuperUser | Boolean | True |
Indicates whether the user has super user privileges, such as elevated access within the portal. | |
| LastLoginDate | Datetime | True |
Date and time of the user's most recent login to the self-service portal. | |
| CreatedDate | Datetime | True |
Date and time when the self-service user account was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the self-service user record. |
| LastModifiedDate | Datetime | True |
Date and time when the self-service user record was last updated. | |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the self-service user record. |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the self-service user. |
Schema file for Seller.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| PartyId | String | False |
Individual.Id |
ID of the Party associated with this record. |
| SalesAmount | Int | False |
Field containing SalesAmount information. | |
| SellerType | String | False |
Type classification for Seller. | |
| SellerTier | String | False |
Field containing SellerTier information. | |
| ActiveFromDate | Date | False |
Date associated with ActiveFrom. | |
| ActiveToDate | Date | False |
Date associated with ActiveTo. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for SenderEmailAddress.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Username | String | False |
Username of the user associated with this record. | |
| EmailDomainKeyId | String | False |
ID of the EmailDomainKey associated with this record. | |
| DisplayName | String | False |
Field containing DisplayName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ServiceContract.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| ContactId | String | False |
Contact.Id |
ID of the Contact associated with this record. |
| Term | Int | False |
Field containing Term information. | |
| StartDate | Date | False |
Start date for the record or activity. | |
| EndDate | Date | False |
End date for the record or activity. | |
| ActivationDate | Datetime | False |
Date associated with Activation. | |
| ApprovalStatus | String | False |
Status of the Approval. | |
| Description | String | False |
Text description of the record. | |
| BillingStreet | String | False |
Street address for Billing purposes. | |
| BillingCity | String | False |
City for Billing address. | |
| BillingState | String | False |
State or province for Billing address. | |
| BillingPostalCode | String | False |
Postal code for Billing address. | |
| BillingCountry | String | False |
Country for Billing address. | |
| BillingLatitude | Double | False |
Latitude coordinate for Billing address geolocation. | |
| BillingLongitude | Double | False |
Longitude coordinate for Billing address geolocation. | |
| BillingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Billing address. | |
| ShippingStreet | String | False |
Street address for Shipping purposes. | |
| ShippingCity | String | False |
City for Shipping address. | |
| ShippingState | String | False |
State or province for Shipping address. | |
| ShippingPostalCode | String | False |
Postal code for Shipping address. | |
| ShippingCountry | String | False |
Country for Shipping address. | |
| ShippingLatitude | Double | False |
Latitude coordinate for Shipping address geolocation. | |
| ShippingLongitude | Double | False |
Longitude coordinate for Shipping address geolocation. | |
| ShippingGeocodeAccuracy | String | False |
Accuracy level of the geocode for the Shipping address. | |
| Pricebook2Id | String | False |
Pricebook2.Id |
ID of the Pricebook2 associated with this record. |
| ShippingHandling | Decimal | False |
Field containing ShippingHandling information. | |
| Tax | Decimal | False |
Tax amount for the record. | |
| ContractNumber | String | True |
Contract identification number. | |
| SpecialTerms | String | False |
Field containing SpecialTerms information. | |
| Discount | Double | True |
Percentage discount from the list price. | |
| GrandTotal | Decimal | True |
Grand total amount including tax. | |
| Status | String | True |
Status of the record. | |
| ParentServiceContractId | String | False |
ID of the ParentServiceContract associated with this record. | |
| RootServiceContractId | String | True |
ID of the RootServiceContract associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ServiceContractFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for SessionHijackingEventStoreFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for SetupAssistantStep.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| AssistantType | String | False |
Type classification for Assistant. | |
| IsComplete | Bool | False |
Indicates whether the record has the Complete characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Controls access settings for custom metadata types, objects, and system permissions.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the setup entity access record. | |
| ParentId | String | False |
Identifier of the parent record, such as a permission set or profile, that grants access. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SetupEntityId | String | False |
Identifier of the setup entity being granted access, such as an Apex class or custom setting. | |
| SetupEntityType | String | True |
Type of the setup entity being referenced, such as ApexClass, CustomMetadata, or CustomSetting. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the access record. |
Captures Chatter activity, including posts and updates, related to Site records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the feed item associated with a site. | |
| ParentId | String | True |
Site.Id |
Identifier of the site record that this feed item is linked to. |
| Type | String | True |
Type of feed item, such as a post, link, or content share. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted from the system. | |
| CommentCount | Int | True |
Total number of comments associated with this feed item. | |
| LikeCount | Int | True |
Total number of likes the feed item has received from users. | |
| Title | String | True |
Title or subject of the feed item, if applicable. | |
| Body | String | True |
Main content or message body of the feed post. | |
| LinkUrl | String | True |
URL of a link shared in the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
Identifier of another record that is mentioned or linked in the feed item. | |
| InsertedById | String | True |
User.Id |
Identifier of the user or automation that inserted the feed item, which may differ from the creator. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp showing the latest update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for SiteIframeWhiteListUrl.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SiteId | String | False |
Site.Id |
ID of the Site associated with this record. |
| Url | String | False |
Field containing Url information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for SiteRedirectMapping.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| SiteId | String | False |
Site.Id |
ID of the Site associated with this record. |
| IsActive | Bool | False |
Indicates whether the record is active. | |
| Source | String | False |
Field containing Source information. | |
| Target | String | False |
Field containing Target information. | |
| Action | String | False |
Field containing Action information. | |
| IsDynamic | Bool | False |
Indicates whether the record has the Dynamic characteristic. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores solutions used in the knowledge base for resolving customer issues.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the solution record. | |
| IsDeleted | Bool | True |
Indicates whether the solution has been deleted from the system. | |
| SolutionNumber | String | True |
Auto-generated number used to uniquely identify the solution. | |
| SolutionName | String | False |
Title of the solution, typically summarizing the issue and resolution. | |
| IsPublished | Bool | False |
Indicates whether the solution is publicly visible in the internal knowledge base. | |
| IsPublishedInPublicKb | Bool | False |
Specifies whether the solution is published to the public knowledge base for external access. | |
| Status | String | False |
Current status of the solution, such as Draft, Reviewed, or Published. | |
| IsReviewed | Bool | True |
Indicates whether the solution has been reviewed as part of the publishing process. | |
| SolutionNote | String | False |
Detailed description or resolution steps provided in the solution. | |
| OwnerId | String | False |
User.Id |
Identifier of the user who owns the solution record. |
| CreatedDate | Datetime | True |
Date and time when the solution was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the solution. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last updated the solution. |
| TimesUsed | Int | True |
Number of cases that have been linked to or resolved using this solution. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| LastViewedDate | Datetime | True |
Date and time when the solution was last viewed by a user. | |
| LastReferencedDate | Datetime | True |
Date and time when the solution was last referenced in another record or context. | |
| IsHtml | Bool | True |
Indicates whether the solution content is formatted using HTML. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the solution. | |
| LastModifiedDate | Datetime | True |
Date and time when the solution was last modified. |
Captures Chatter activity, including posts and updates, related to Solution records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the feed item associated with a solution. | |
| ParentId | String | True |
Solution.Id |
Identifier of the solution record that this feed item is related to. |
| Type | String | True |
Type of feed item, such as a post, file, comment, or link. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted from the system. | |
| CommentCount | Int | True |
Number of comments associated with this feed item. | |
| LikeCount | Int | True |
Number of likes the feed item has received. | |
| Title | String | True |
Optional title or headline for the feed item. | |
| Body | String | True |
Main message or content body of the feed post. | |
| LinkUrl | String | True |
URL shared in the feed item, pointing to external or internal content. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
Identifier of another record that is referenced or linked in the feed item. | |
| InsertedById | String | True |
User.Id |
Identifier of the user or automation that inserted the feed item, possibly different from the creator. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for SPSamlAttributes.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Key | String | False |
Field containing Key information. | |
| Value | String | False |
Field containing Value information. | |
| ConnectivityId | String | False |
ID of the Connectivity associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores static files, such as images, stylesheets, and JavaScript, for use in Visualforce and Lightning applications.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the static resource record, used for referencing and management within the metadata framework. | |
| NamespacePrefix | String | True |
Prefix identifying the managed package to which this static resource belongs; blank if the resource is unmanaged. | |
| Name | String | False |
Developer-friendly name used to reference the static resource in code, such as in Visualforce pages or Lightning components. | |
| ContentType | String | False |
Multipurpose Internet Mail Extensions (MIME) type of the resource content, such as application/javascript, text/css, or image/png, which informs the browser how to process the file. | |
| BodyLength | Int | True |
Size of the static resource in bytes, useful for monitoring storage usage and optimization strategies. | |
| Body | String | False |
Encoded content of the static resource, stored as a binary string and retrievable through the API or UI. | |
| Description | String | False |
Optional descriptive text providing context, versioning notes, or usage instructions for developers and admins. | |
| CreatedDate | Datetime | True |
Timestamp indicating when the static resource was originally created, aiding in change tracking and auditability. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the static resource, essential for tracing ownership and responsibility. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the resource, providing traceability in collaborative development environments. |
| CacheControl | String | False |
Defines how the resource is cached by browsers and proxies, with options such as 'Public' or 'Private' to control client-side caching behavior and performance optimization. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp reflecting the latest change from any source, used to ensure data consistency across systems. | |
| LastModifiedDate | Datetime | True |
Timestamp indicating the most recent update to the resource, critical for synchronization and deployment practices. |
Schema file for StreamingChannel.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| IsDynamic | Bool | True |
Indicates whether the record has the Dynamic characteristic. | |
| Description | String | False |
Text description of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Swarm.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| RelatedRecordId | String | False |
ID of the record associated with this feed item. | |
| RelatedRecordIdType | String | False |
Specifies the type of the 'RelatedRecordId' polymorphic field to use in the statement. | |
| RelatedRecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Status | String | False |
Status of the record. | |
| CollaborationTool | String | False |
Field containing CollaborationTool information. | |
| CollaborationRoomId | String | False |
ID of the CollaborationRoom associated with this record. | |
| StartedDateTime | Datetime | False |
Field containing StartedDateTime information. | |
| EndedDateTime | Datetime | False |
Field containing EndedDateTime information. | |
| CollaborationUrl | String | False |
Field containing CollaborationUrl information. | |
| IsDedicatedChannel | Bool | True |
Indicates whether the record has the DedicatedChannel characteristic. | |
| UsageType | String | False |
Type classification for Usage. | |
| HelpNeeded | String | False |
Field containing HelpNeeded information. | |
| MessageKey | String | False |
Field containing MessageKey information. | |
| ChannelType | String | True |
Type classification for Channel. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for SwarmFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
Swarm.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for SwarmMember.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| RelatedRecordId | String | False |
ID of the record associated with this feed item. | |
| RelatedRecordIdType | String | False |
Specifies the type of the 'RelatedRecordId' polymorphic field to use in the statement. | |
| RelatedRecordIdExternalFieldName | String | False |
Specifies the external field name of the 'RelatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Status | String | False |
Status of the record. | |
| HelpNeeded | String | False |
Field containing HelpNeeded information. | |
| AssignedDateTime | Datetime | False |
Field containing AssignedDateTime information. | |
| CompletedDateTime | Datetime | False |
Field containing CompletedDateTime information. | |
| SwarmId | String | False |
Swarm.Id |
ID of the Swarm associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for SwarmMemberFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
SwarmMember.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for TableauHostMapping.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SiteLuid | String | False |
ID of the SiteLu associated with this record. | |
| UrlMatch | String | False |
Field containing UrlMatch information. | |
| HostType | String | False |
Type classification for Host. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Represents user tasks, such as follow-ups and reminders, that track activities within Salesforce.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the task record. | |
| WhoId | String | False |
Identifier of the contact or lead related to this task. | |
| WhoIdType | String | False |
Specifies the type of the 'WhoId' polymorphic field to use in the statement. | |
| WhoIdExternalFieldName | String | False |
Specifies the external field name of the 'WhoId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| WhatId | String | False |
Identifier of the related object, such as an opportunity, account, or custom object. | |
| WhatIdType | String | False |
Specifies the type of the 'WhatId' polymorphic field to use in the statement. | |
| WhatIdExternalFieldName | String | False |
Specifies the external field name of the 'WhatId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Subject | String | False |
Brief description or title of the task, typically indicating its purpose. | |
| ActivityDate | Date | False |
Due date for the task; does not include a time component. | |
| Status | String | False |
Current status of the task, such as Not Started, Completed, or In Progress. | |
| Priority | String | False |
Priority level of the task, such as High, Normal, or Low. | |
| IsHighPriority | Bool | True |
Indicates whether the record has the HighPriority characteristic. | |
| OwnerId | String | False |
Identifier of the user or queue to whom the task is assigned. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Description | String | False |
Detailed notes or instructions related to the task. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| IsDeleted | Bool | True |
Indicates whether the task has been deleted from the system. | |
| AccountId | String | True |
Account.Id |
Identifier of the account associated with the task, typically inferred from the related contact. |
| IsClosed | Bool | True |
Indicates whether the task has been marked as completed or closed. | |
| CreatedDate | Datetime | True |
Date and time when the task was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the task. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last updated the task. |
| IsArchived | Bool | True |
Indicates whether the task has been archived as part of a historical activity process. | |
| CallDurationInSeconds | Int | False |
Length of the associated call, in seconds, if the task is a logged call. | |
| CallType | String | False |
Type of call, such as Inbound or Outbound, if the task represents a call. | |
| CallDisposition | String | False |
Outcome or result of the call, such as Left Voicemail or Completed. | |
| CallObject | String | False |
Identifier for the telephony system object associated with the call task. | |
| ReminderDateTime | Datetime | False |
Date and time when a reminder notification should be sent for this task. | |
| IsReminderSet | Bool | False |
Indicates whether a reminder is set for this task. | |
| RecurrenceActivityId | String | True |
Task.Id |
Identifier of the master task record for a recurring task series. |
| IsRecurrence | Bool | False |
Indicates whether the task is part of a recurring task series. | |
| RecurrenceStartDateOnly | Date | False |
Start date of the recurring task series. | |
| RecurrenceEndDateOnly | Date | False |
End date of the recurring task series. | |
| RecurrenceTimeZoneSidKey | String | False |
Time zone used to schedule the recurring task series. | |
| RecurrenceType | String | False |
Pattern of recurrence, such as Daily, Weekly, or Monthly. | |
| RecurrenceInterval | Int | False |
Frequency of the recurrence, such as every 2 days or every 3 weeks. | |
| RecurrenceDayOfWeekMask | Int | False |
Bitmask representing the days of the week on which the task recurs. | |
| RecurrenceDayOfMonth | Int | False |
Specific day of the month on which the task recurs, if applicable. | |
| RecurrenceInstance | String | False |
Instance of the recurrence, such as First, Second, or Last (used for monthly patterns). | |
| RecurrenceMonthOfYear | String | False |
Month of the year in which the task recurs, used for annual recurrence patterns. | |
| RecurrenceRegeneratedType | String | False |
Type classification for RecurrenceRegenerated. | |
| TaskSubtype | String | False |
Type classification for TaskSub. | |
| CompletedDateTime | Datetime | True |
Field containing CompletedDateTime information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the task. | |
| LastModifiedDate | Datetime | True |
Date and time when the task was last modified. |
Captures Chatter activity, including posts and updates, related to Task records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the feed item related to a task. | |
| ParentId | String | True |
Task.Id |
Identifier of the task record that this feed item is associated with. |
| Type | String | True |
Specifies the type of feed item, such as a post, comment, file, or link. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted from the system. | |
| CommentCount | Int | True |
Total number of comments associated with this feed item. | |
| LikeCount | Int | True |
Total number of likes received by the feed item. | |
| Title | String | True |
Optional title or subject line of the feed item. | |
| Body | String | True |
Main message content or text body of the feed item. | |
| LinkUrl | String | True |
URL included in the feed item that links to internal or external content. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
Identifier of another record referenced or linked in the feed item. | |
| InsertedById | String | True |
User.Id |
Identifier of the user or process that inserted the feed item, which might differ from the creator. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp reflecting the most recent change to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last updated. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for Territory2.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| Name | String | False |
Name of the record. | |
| Territory2TypeId | String | False |
ID of the Territory2Type associated with this record. | |
| Territory2ModelId | String | False |
ID of the Territory2Model associated with this record. | |
| ParentTerritory2Id | String | False |
Territory2.Id |
ID of the ParentTerritory2 associated with this record. |
| Description | String | False |
Text description of the record. | |
| ForecastUserId | String | False |
User.Id |
ID of the ForecastUser associated with this record. |
| AccountAccessLevel | String | False |
Field containing AccountAccessLevel information. | |
| OpportunityAccessLevel | String | False |
Field containing OpportunityAccessLevel information. | |
| CaseAccessLevel | String | False |
Field containing CaseAccessLevel information. | |
| ContactAccessLevel | String | True |
Field containing ContactAccessLevel information. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Territory2Model.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| ActivatedDate | Datetime | True |
Date associated with Activated. | |
| DeactivatedDate | Datetime | True |
Date associated with Deactivated. | |
| State | String | False |
State or province portion of the address. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| LastRunRulesEndDate | Datetime | True |
Date associated with LastRunRulesEnd. | |
| IsCloneSource | Bool | True |
Indicates whether the record has the CloneSource characteristic. | |
| LastOppTerrAssignEndDate | Datetime | True |
Date associated with LastOppTerrAssignEnd. | |
| IsSharingGroupDeleteDone | Bool | True |
Indicates whether the record has the SharingGroupDeleteDone characteristic. | |
| IsOppUnassignmentDone | Bool | True |
Indicates whether the record has the OppUnassignmentDone characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Territory2ModelFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for Territory2ObjectExclusion.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ObjectId | String | False |
Account.Id |
ID of the Object associated with this record. |
| ObjectIdType | String | False |
Specifies the type of the 'ObjectId' polymorphic field to use in the statement. | |
| ObjectIdExternalFieldName | String | False |
Specifies the external field name of the 'ObjectId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Territory2Id | String | False |
Territory2.Id |
ID of the Territory2 associated with this record. |
| Note | String | False |
Field containing Note information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Territory2ObjSharingConfig.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Territory2Id | String | True |
Territory2.Id |
ID of the Territory2 associated with this record. |
| TerritoryMgmtObjectConfigId | String | True |
ID of the TerritoryMgmtObjectConfig associated with this record. | |
| AccessLevel | String | False |
Level of access granted to the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for Territory2Type.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Description | String | False |
Text description of the record. | |
| Priority | Int | False |
Priority level of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for TerritoryAdminAssignment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Territory2ModelId | String | False |
ID of the Territory2Model associated with this record. | |
| UserOrGroupId | String | False |
ID of the UserOrGroup associated with this record. | |
| UserOrGroupIdType | String | False |
Specifies the type of the 'UserOrGroupId' polymorphic field to use in the statement. | |
| UserOrGroupIdExternalFieldName | String | False |
Specifies the external field name of the 'UserOrGroupId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Territory2Id | String | False |
Territory2.Id |
ID of the Territory2 associated with this record. |
| CanManageHierarchy | Bool | False |
Indicates whether the user or record can perform ManageHierarchy action. | |
| CanManageMembers | Bool | False |
Indicates whether the user or record can perform ManageMembers action. | |
| CanManageRecordAssociations | Bool | False |
Indicates whether the user or record can perform ManageRecordAssociations action. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for TerritoryMgmtObjectConfig.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Object | String | False |
Field containing Object information. | |
| DefaultAccessLevel | String | False |
Field containing DefaultAccessLevel information. | |
| State | String | False |
State or province portion of the address. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for TestSuiteMembership.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ApexTestSuiteId | String | False |
ID of the ApexTestSuite associated with this record. | |
| ApexClassId | String | False |
ApexClass.Id |
ID of the ApexClass associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ThreatDetectionFeedback.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ThreatDetectionFeedbackNumber | String | True |
ThreatDetectionFeedback identification number. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| UserIdType | String | False |
Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | False |
Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | False |
Username of the user associated with this record. | |
| ThreatDetectionEventId | String | False |
ID of the ThreatDetectionEvent associated with this record. | |
| ThreatDetectionEventIdType | String | False |
Specifies the type of the 'ThreatDetectionEventId' polymorphic field to use in the statement. | |
| ThreatDetectionEventIdExternalFieldName | String | False |
Specifies the external field name of the 'ThreatDetectionEventId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Response | String | False |
Field containing Response information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for ThreatDetectionFeedbackFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for TodayGoal.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Value | Decimal | False |
Field containing Value information. | |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Represents topics used for categorizing and grouping content in Chatter and records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the topic record. | |
| Name | String | False |
Name of the topic, typically used to tag and organize content. | |
| Description | String | False |
Optional description providing context or purpose of the topic. | |
| CreatedDate | Datetime | True |
Date and time when the topic was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the topic. |
| TalkingAbout | Int | True |
Number of posts, records, or users currently engaging with this topic. | |
| ManagedTopicType | String | True |
Type classification for ManagedTopic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the topic record. |
Links topics to records, allowing users to categorize and filter content using topic tags.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the topic assignment record. | |
| TopicId | String | False |
Topic.Id |
Identifier of the topic that is being assigned. |
| EntityId | String | False |
Identifier of the record (such as a case, account, or custom object) associated with the topic. | |
| EntityIdType | String | False |
Specifies the type of the 'EntityId' polymorphic field to use in the statement. | |
| EntityIdExternalFieldName | String | False |
Specifies the external field name of the 'EntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| EntityKeyPrefix | String | True |
Field containing EntityKeyPrefix information. | |
| EntityType | String | True |
Type classification for Entity. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the topic assignment. |
| IsDeleted | Bool | True |
Indicates whether the topic assignment has been deleted from the system. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the topic assignment. | |
| CreatedDate | Datetime | True |
Date and time when the topic was assigned to the record. |
Captures Chatter activity, including posts and updates, related to Topic records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the feed item associated with a topic. | |
| ParentId | String | True |
Topic.Id |
Identifier of the topic that this feed item is linked to. |
| Type | String | True |
Type of feed item, such as post, comment, file, or link. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted from the system. | |
| CommentCount | Int | True |
Number of comments associated with this feed item. | |
| LikeCount | Int | True |
Number of likes received by this feed item. | |
| Title | String | True |
Optional title or subject line for the feed item. | |
| Body | String | True |
Main message content or description of the feed post. | |
| LinkUrl | String | True |
URL included in the feed item that links to external or internal content. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
Identifier of another record referenced or linked in the feed item. | |
| InsertedById | String | True |
User.Id |
Identifier of the user or process that inserted the feed item into the topic feed. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp reflecting the most recent change to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last updated. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for TopicUserEvent.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| UserId | String | True |
User.Id |
ID of the User associated with this record. |
| TopicId | String | True |
Topic.Id |
ID of the Topic associated with this record. |
| ActionEnum | String | True |
Field containing ActionEnum information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for TransactionSecurityPolicy.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| Type | String | False |
Type of account or classification. | |
| State | String | False |
State or province portion of the address. | |
| ActionConfig | String | False |
Field containing ActionConfig information. | |
| ApexPolicyId | String | False |
ApexClass.Id |
ID of the ApexPolicy associated with this record. |
| EventType | String | False |
Type classification for Event. | |
| ResourceName | String | False |
Field containing ResourceName information. | |
| ExecutionUserId | String | False |
User.Id |
ID of the ExecutionUser associated with this record. |
| Description | String | False |
Text description of the record. | |
| EventName | String | False |
Field containing EventName information. | |
| BlockMessage | String | False |
Field containing BlockMessage information. | |
| CustomEmailContent | String | False |
Field containing CustomEmailContent information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores details about Salesforce users, including login credentials, profiles, and roles.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the user record. | |
| Username | String | False |
Login name used by the user to sign in to Salesforce. | |
| LastName | String | False |
User's last name as entered in their profile. | |
| FirstName | String | False |
User's first name as entered in their profile. | |
| Name | String | True |
Full name of the user, typically a combination of first and last names. | |
| CompanyName | String | False |
Name of the company or organization the user is associated with. | |
| Division | String | False |
User's division within the organization, used for reporting and filtering. | |
| Department | String | False |
Department that the user belongs to, such as Sales or IT. | |
| Title | String | False |
Job title of the user within the organization. | |
| Street | String | False |
Street address listed in the user's contact information. | |
| City | String | False |
City listed in the user's contact information. | |
| State | String | False |
State or province listed in the user's contact information. | |
| PostalCode | String | False |
Postal or ZIP code listed in the user's contact information. | |
| Country | String | False |
Country listed in the user's contact information. | |
| Latitude | Double | False |
Geographic latitude coordinate for the user's address. | |
| Longitude | Double | False |
Geographic longitude coordinate for the user's address. | |
| GeocodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| String | False |
Email address used by the user for communication and notifications. | ||
| EmailPreferencesAutoBcc | Bool | False |
Indicates if outgoing emails are automatically BCC'd to the sender. | |
| EmailPreferencesAutoBccStayInTouch | Bool | False |
Specifies if stay-in-touch emails are automatically BCC'd to the sender. | |
| EmailPreferencesStayInTouchReminder | Bool | False |
Indicates whether the user receives reminders to stay in touch with contacts. | |
| SenderEmail | String | False |
Email address used as the sender for outbound emails from this user. | |
| SenderName | String | False |
Display name used as the sender for outbound emails from this user. | |
| Signature | String | False |
Email signature appended to messages sent by the user. | |
| StayInTouchSubject | String | False |
Default subject line used for stay-in-touch request emails. | |
| StayInTouchSignature | String | False |
Signature used in stay-in-touch emails sent by the user. | |
| StayInTouchNote | String | False |
Default message body for stay-in-touch request emails. | |
| Phone | String | False |
Primary phone number listed for the user. | |
| Fax | String | False |
Fax number associated with the user. | |
| MobilePhone | String | False |
Mobile or cell phone number listed for the user. | |
| Alias | String | False |
Shortened alias or nickname used for identification in internal Salesforce processes. | |
| CommunityNickname | String | False |
Nickname used by the user in Salesforce communities. | |
| BadgeText | String | True |
Field containing BadgeText information. | |
| IsActive | Bool | False |
Indicates whether the user account is currently active. | |
| TimeZoneSidKey | String | False |
Time zone setting for the user, which affects calendar and time-based features. | |
| UserRoleId | String | False |
UserRole.Id |
Identifier for the user role, which defines hierarchy and access levels. |
| LocaleSidKey | String | False |
Locale setting that controls regional formatting such as dates and numbers. | |
| ReceivesInfoEmails | Bool | False |
Indicates whether the user receives informational emails from Salesforce. | |
| ReceivesAdminInfoEmails | Bool | False |
Indicates whether the user receives administrative-related emails from Salesforce. | |
| EmailEncodingKey | String | False |
Character encoding used for the user's email communications, such as UTF-8 or ISO-8859-1. | |
| DefaultCurrencyIsoCode | String | False |
Field containing DefaultCurrencyIsoCode information. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| ProfileId | String | False |
Profile.Id |
Identifier of the profile assigned to the user, which defines their permissions and access. |
| UserType | String | True |
Category of the user, such as Standard, Partner, or Customer Portal. | |
| StartDay | String | False |
Field containing StartDay information. | |
| EndDay | String | False |
Field containing EndDay information. | |
| LanguageLocaleKey | String | False |
Language preference setting used to localize the user interface. | |
| EmployeeNumber | String | False |
Employee identification number assigned to the user by the organization. | |
| DelegatedApproverId | String | False |
Identifier of the user authorized to approve items on behalf of this user. | |
| ManagerId | String | False |
User.Id |
Identifier of the user's manager, used for hierarchy and reporting. |
| LastLoginDate | Datetime | True |
Date and time when the user last logged into Salesforce. | |
| LastPasswordChangeDate | Datetime | True |
Date and time when the user last changed or reset their password. | |
| CreatedDate | Datetime | True |
Date and time when the user record was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created this user record. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the user record. |
| PasswordExpirationDate | Datetime | True |
Date associated with PasswordExpiration. | |
| NumberOfFailedLogins | Int | True |
Field containing NumberOfFailedLogins information. | |
| SuAccessExpirationDate | Date | True |
Date associated with SuAccessExpiration. | |
| OfflineTrialExpirationDate | Datetime | True |
Expiration date of the user's trial license for Salesforce Offline Edition. | |
| OfflinePdaTrialExpirationDate | Datetime | True |
Expiration date of the user's trial license for Salesforce Sales Anywhere or PDA support. | |
| UserPermissionsMarketingUser | Bool | False |
Indicates whether the user has marketing permissions, such as managing campaigns. | |
| UserPermissionsOfflineUser | Bool | False |
Specifies whether the user has access to the Salesforce Offline Edition. | |
| UserPermissionsCallCenterAutoLogin | Bool | False |
Allows the user to automatically log into the assigned call center. | |
| UserPermissionsSFContentUser | Bool | False |
Specifies whether the user has access to Salesforce Customer Relationship Management (CRM) Content. | |
| UserPermissionsKnowledgeUser | Bool | False |
Grants access to Salesforce Knowledge features. | |
| UserPermissionsInteractionUser | Bool | False |
Allows the user to create, run, or manage flows in Flow Builder. | |
| UserPermissionsSupportUser | Bool | False |
Grants Service Cloud access to the user, enabling case management and related features. | |
| UserPermissionsJigsawProspectingUser | Bool | False |
Field containing UserPermissionsJigsawProspectingUser information. | |
| UserPermissionsSiteforceContributorUser | Bool | False |
Enables the user to contribute to Site.com (now Experience Cloud) content. | |
| UserPermissionsSiteforcePublisherUser | Bool | False |
Allows the user to publish content within Site.com (Experience Cloud) environments. | |
| UserPermissionsWorkDotComUserFeature | Bool | False |
Field containing UserPermissionsWorkDotComUserFeature information. | |
| ForecastEnabled | Bool | False |
Indicates whether the user can access forecasting features for sales planning. | |
| UserPreferencesActivityRemindersPopup | Bool | False |
Determines whether the user receives pop-up reminders for activities. | |
| UserPreferencesEventRemindersCheckboxDefault | Bool | False |
Controls whether event reminders are enabled by default when creating new events. | |
| UserPreferencesTaskRemindersCheckboxDefault | Bool | False |
Controls whether reminders are enabled by default when creating new tasks. | |
| UserPreferencesReminderSoundOff | Bool | False |
Indicates whether the reminder sound is disabled for pop-up notifications. | |
| UserPreferencesDisableAllFeedsEmail | Bool | False |
Indicates whether the user has disabled all Chatter email notifications. | |
| UserPreferencesDisableFollowersEmail | Bool | False |
Indicates whether the user has disabled email notifications when someone follows them. | |
| UserPreferencesDisableProfilePostEmail | Bool | False |
Specifies whether the user receives emails for profile posts. | |
| UserPreferencesDisableChangeCommentEmail | Bool | False |
Determines whether the user is notified by email when comments are changed. | |
| UserPreferencesDisableLaterCommentEmail | Bool | False |
Indicates whether the user receives email notifications for later comments on posts they commented on. | |
| UserPreferencesDisProfPostCommentEmail | Bool | False |
Specifies whether the user is notified about comments on their profile posts. | |
| UserPreferencesContentNoEmail | Bool | False |
Field containing UserPreferencesContentNoEmail information. | |
| UserPreferencesContentEmailAsAndWhen | Bool | False |
Field containing UserPreferencesContentEmailAsAndWhen information. | |
| UserPreferencesApexPagesDeveloperMode | Bool | False |
Enables developer mode, which shows Apex debug logs and page component outlines. | |
| UserPreferencesReceiveNoNotificationsAsApprover | Bool | False |
Field containing UserPreferencesReceiveNoNotificationsAsApprover information. | |
| UserPreferencesReceiveNotificationsAsDelegatedApprover | Bool | False |
Field containing UserPreferencesReceiveNotificationsAsDelegatedApprover information. | |
| UserPreferencesHideCSNGetChatterMobileTask | Bool | False |
Hides the task encouraging the user to install Chatter Mobile. | |
| UserPreferencesDisableMentionsPostEmail | Bool | False |
Disables email notifications when the user is mentioned in a post. | |
| UserPreferencesDisMentionsCommentEmail | Bool | False |
Disables email notifications when the user is mentioned in a comment. | |
| UserPreferencesHideCSNDesktopTask | Bool | False |
Hides the task suggesting Chatter Desktop setup. | |
| UserPreferencesHideChatterOnboardingSplash | Bool | False |
Suppresses the Chatter onboarding splash screen for the user. | |
| UserPreferencesHideSecondChatterOnboardingSplash | Bool | False |
Suppresses a second Chatter onboarding screen, if available. | |
| UserPreferencesDisCommentAfterLikeEmail | Bool | False |
Prevents email alerts for comments made after the user likes a post. | |
| UserPreferencesDisableLikeEmail | Bool | False |
Indicates whether the user receives emails when someone likes their post. | |
| UserPreferencesSortFeedByComment | Bool | False |
Field containing UserPreferencesSortFeedByComment information. | |
| UserPreferencesDisableMessageEmail | Bool | False |
Disables email notifications for private messages sent via Chatter. | |
| UserPreferencesJigsawListUser | Bool | False |
Field containing UserPreferencesJigsawListUser information. | |
| UserPreferencesDisableBookmarkEmail | Bool | False |
Prevents email notifications when someone bookmarks the user's content. | |
| UserPreferencesDisableSharePostEmail | Bool | False |
Disables email notifications for shared Chatter posts involving the user. | |
| UserPreferencesActionLauncherEinsteinGptConsent | Bool | False |
Field containing UserPreferencesActionLauncherEinsteinGptConsent information. | |
| UserPreferencesAssistiveActionsEnabledInActionLauncher | Bool | False |
Field containing UserPreferencesAssistiveActionsEnabledInActionLauncher information. | |
| UserPreferencesEnableAutoSubForFeeds | Bool | False |
Automatically subscribes the user to feeds they interact with. | |
| UserPreferencesDisableFileShareNotificationsForApi | Bool | False |
Disables email notifications triggered by API-based file shares. | |
| UserPreferencesShowTitleToExternalUsers | Bool | False |
Allows the user's job title to be visible to external community users. | |
| UserPreferencesShowManagerToExternalUsers | Bool | False |
Allows the user's manager information to be shown to external users. | |
| UserPreferencesShowEmailToExternalUsers | Bool | False |
Allows the user's email address to be visible to external users. | |
| UserPreferencesShowWorkPhoneToExternalUsers | Bool | False |
Allows the user's work phone number to be displayed to external users. | |
| UserPreferencesShowMobilePhoneToExternalUsers | Bool | False |
Allows the user's mobile number to be visible to external users. | |
| UserPreferencesShowFaxToExternalUsers | Bool | False |
Allows the user's fax number to be displayed to external users. | |
| UserPreferencesShowStreetAddressToExternalUsers | Bool | False |
Allows the user's street address to be shown to external users. | |
| UserPreferencesShowCityToExternalUsers | Bool | False |
Allows the user's city to be visible to external users. | |
| UserPreferencesShowStateToExternalUsers | Bool | False |
Allows the user's state or province to be visible to external users. | |
| UserPreferencesShowPostalCodeToExternalUsers | Bool | False |
Allows the user's postal or ZIP code to be displayed to external users. | |
| UserPreferencesShowCountryToExternalUsers | Bool | False |
Allows the user's country to be visible to external users. | |
| UserPreferencesShowProfilePicToGuestUsers | Bool | False |
Enables the user's profile picture to be shown to guest users. | |
| UserPreferencesShowTitleToGuestUsers | Bool | False |
Allows the user's title to be shown to unauthenticated guest users. | |
| UserPreferencesShowCityToGuestUsers | Bool | False |
Allows the user's city to be displayed to guest users. | |
| UserPreferencesShowStateToGuestUsers | Bool | False |
Allows the user's state or province to be visible to guest (unauthenticated) users. | |
| UserPreferencesShowPostalCodeToGuestUsers | Bool | False |
Allows the user's postal or ZIP code to be shown to guest users. | |
| UserPreferencesShowCountryToGuestUsers | Bool | False |
Allows the user's country to be visible to guest users. | |
| UserPreferencesShowForecastingChangeSignals | Bool | False |
Field containing UserPreferencesShowForecastingChangeSignals information. | |
| UserPreferencesLiveAgentMiawSetupDeflection | Bool | False |
Field containing UserPreferencesLiveAgentMiawSetupDeflection information. | |
| UserPreferencesHideS1BrowserUI | Bool | False |
Hides the Salesforce1 (now Salesforce mobile web) interface in the browser for the user. | |
| UserPreferencesDisableEndorsementEmail | Bool | False |
Field containing UserPreferencesDisableEndorsementEmail information. | |
| UserPreferencesPathAssistantCollapsed | Bool | False |
Field containing UserPreferencesPathAssistantCollapsed information. | |
| UserPreferencesCacheDiagnostics | Bool | False |
Field containing UserPreferencesCacheDiagnostics information. | |
| UserPreferencesShowEmailToGuestUsers | Bool | False |
Field containing UserPreferencesShowEmailToGuestUsers information. | |
| UserPreferencesShowManagerToGuestUsers | Bool | False |
Field containing UserPreferencesShowManagerToGuestUsers information. | |
| UserPreferencesShowWorkPhoneToGuestUsers | Bool | False |
Field containing UserPreferencesShowWorkPhoneToGuestUsers information. | |
| UserPreferencesShowMobilePhoneToGuestUsers | Bool | False |
Field containing UserPreferencesShowMobilePhoneToGuestUsers information. | |
| UserPreferencesShowFaxToGuestUsers | Bool | False |
Field containing UserPreferencesShowFaxToGuestUsers information. | |
| UserPreferencesShowStreetAddressToGuestUsers | Bool | False |
Field containing UserPreferencesShowStreetAddressToGuestUsers information. | |
| UserPreferencesLightningExperiencePreferred | Bool | False |
Field containing UserPreferencesLightningExperiencePreferred information. | |
| UserPreferencesPreviewLightning | Bool | False |
Field containing UserPreferencesPreviewLightning information. | |
| UserPreferencesHideEndUserOnboardingAssistantModal | Bool | False |
Field containing UserPreferencesHideEndUserOnboardingAssistantModal information. | |
| UserPreferencesHideLightningMigrationModal | Bool | False |
Field containing UserPreferencesHideLightningMigrationModal information. | |
| UserPreferencesHideSfxWelcomeMat | Bool | False |
Field containing UserPreferencesHideSfxWelcomeMat information. | |
| UserPreferencesHideBiggerPhotoCallout | Bool | False |
Field containing UserPreferencesHideBiggerPhotoCallout information. | |
| UserPreferencesGlobalNavBarWTShown | Bool | False |
Field containing UserPreferencesGlobalNavBarWTShown information. | |
| UserPreferencesGlobalNavGridMenuWTShown | Bool | False |
Field containing UserPreferencesGlobalNavGridMenuWTShown information. | |
| UserPreferencesCreateLEXAppsWTShown | Bool | False |
Field containing UserPreferencesCreateLEXAppsWTShown information. | |
| UserPreferencesFavoritesWTShown | Bool | False |
Field containing UserPreferencesFavoritesWTShown information. | |
| UserPreferencesRecordHomeSectionCollapseWTShown | Bool | False |
Field containing UserPreferencesRecordHomeSectionCollapseWTShown information. | |
| UserPreferencesRecordHomeReservedWTShown | Bool | False |
Field containing UserPreferencesRecordHomeReservedWTShown information. | |
| UserPreferencesFavoritesShowTopFavorites | Bool | False |
Field containing UserPreferencesFavoritesShowTopFavorites information. | |
| UserPreferencesExcludeMailAppAttachments | Bool | False |
Field containing UserPreferencesExcludeMailAppAttachments information. | |
| UserPreferencesSuppressTaskSFXReminders | Bool | False |
Field containing UserPreferencesSuppressTaskSFXReminders information. | |
| UserPreferencesSuppressEventSFXReminders | Bool | False |
Field containing UserPreferencesSuppressEventSFXReminders information. | |
| UserPreferencesPreviewCustomTheme | Bool | False |
Field containing UserPreferencesPreviewCustomTheme information. | |
| UserPreferencesHasCelebrationBadge | Bool | False |
Field containing UserPreferencesHasCelebrationBadge information. | |
| UserPreferencesUserDebugModePref | Bool | False |
Field containing UserPreferencesUserDebugModePref information. | |
| UserPreferencesSRHOverrideActivities | Bool | False |
Field containing UserPreferencesSRHOverrideActivities information. | |
| UserPreferencesNewLightningReportRunPageEnabled | Bool | False |
Field containing UserPreferencesNewLightningReportRunPageEnabled information. | |
| UserPreferencesReverseOpenActivitiesView | Bool | False |
Field containing UserPreferencesReverseOpenActivitiesView information. | |
| UserPreferencesHasSentWarningEmail | Bool | False |
Field containing UserPreferencesHasSentWarningEmail information. | |
| UserPreferencesHasSentWarningEmail238 | Bool | False |
Field containing UserPreferencesHasSentWarningEmail238 information. | |
| UserPreferencesHasSentWarningEmail240 | Bool | False |
Field containing UserPreferencesHasSentWarningEmail240 information. | |
| UserPreferencesDismissPersonalSpaceLegalMessage | Bool | False |
Field containing UserPreferencesDismissPersonalSpaceLegalMessage information. | |
| UserPreferencesNativeEmailClient | Bool | False |
Field containing UserPreferencesNativeEmailClient information. | |
| UserPreferencesHideManagedEcaMobilePubModal | Bool | False |
Field containing UserPreferencesHideManagedEcaMobilePubModal information. | |
| UserPreferencesShowForecastingRoundedAmounts | Bool | False |
Field containing UserPreferencesShowForecastingRoundedAmounts information. | |
| HasUserVerifiedPhone | Bool | True |
Indicates whether the record has UserVerifiedPhone. | |
| HasUserVerifiedEmail | Bool | True |
Indicates whether the record has UserVerifiedEmail. | |
| ContactId | String | False |
Contact.Id |
Identifier of the contact record associated with the user, if applicable. |
| AccountId | String | True |
Account.Id |
Identifier of the account linked to the user, primarily for community or partner users. |
| CallCenterId | String | False |
CallCenter.Id |
Identifier of the call center configuration assigned to the user. |
| Extension | String | False |
Phone extension number associated with the user for call center use. | |
| FederationIdentifier | String | False |
Unique SAML federation ID used for single sign-on (SSO) authentication. | |
| AboutMe | String | False |
Free-text field where the user can provide a brief biography or personal description. | |
| FullPhotoUrl | String | True |
URL linking to the user's full-sized profile photo. | |
| SmallPhotoUrl | String | True |
URL linking to the user's thumbnail-sized profile photo. | |
| IsExtIndicatorVisible | Bool | True |
Indicates whether the record has the ExtIndicatorVisible characteristic. | |
| OutOfOfficeMessage | String | True |
Field containing OutOfOfficeMessage information. | |
| MediumPhotoUrl | String | True |
Field containing MediumPhotoUrl information. | |
| DigestFrequency | String | False |
Frequency setting for how often the user receives Chatter digest emails. | |
| DefaultGroupNotificationFrequency | String | False |
Default notification frequency for Chatter group updates when the user joins a group. | |
| JigsawImportLimitOverride | Int | False |
Field containing JigsawImportLimitOverride information. | |
| LastViewedDate | Datetime | True |
Timestamp indicating when the user record was last viewed. | |
| LastReferencedDate | Datetime | True |
Timestamp indicating when the user record was last referenced in related records or automation. | |
| BannerPhotoUrl | String | True |
Field containing BannerPhotoUrl information. | |
| SmallBannerPhotoUrl | String | True |
Field containing SmallBannerPhotoUrl information. | |
| MediumBannerPhotoUrl | String | True |
Field containing MediumBannerPhotoUrl information. | |
| IsProfilePhotoActive | Bool | True |
Indicates whether the record has the ProfilePhotoActive characteristic. | |
| IndividualId | String | False |
Individual.Id |
ID of the data privacy record associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| TriggerAutoResponseEmail | Bool | False |
Indicates whether to trigger auto-response rules (true) or not (false), for leads and cases. | |
| TriggerOtherEmail | Bool | False |
Indicates whether to trigger email outside the organization (true) or not (false). | |
| TriggerUserEmail | Bool | False |
Indicates whether to trigger email that is sent to users in the organization (true) or not (false). | |
| SystemModstamp | Datetime | True |
System-generated timestamp of the most recent change to the user record. | |
| LastModifiedDate | Datetime | True |
Date and time when the user record was last updated. |
Schema file for UserAppInfo.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| FormFactor | String | False |
Field containing FormFactor information. | |
| AppDefinitionId | String | False |
ID of the AppDefinition associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserDefinedLabel.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Color | String | False |
Field containing Color information. | |
| Type | String | False |
Type of account or classification. | |
| TotalAssignments | Int | True |
Field containing TotalAssignments information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserDefinedLabelAssignment.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LabelId | String | False |
ID of the Label associated with this record. | |
| ItemId | String | False |
ID of the Item associated with this record. | |
| SubjectOrName | String | True |
Field containing SubjectOrName information. | |
| SortOrder | Int | True |
Field containing SortOrder information. | |
| EntityType | String | True |
Type classification for Entity. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserEmailPreferredPerson.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| String | False |
Email address for the contact or person account. | ||
| PersonRecordId | String | False |
ID of the PersonRecord associated with this record. | |
| PersonRecordIdType | String | False |
Specifies the type of the 'PersonRecordId' polymorphic field to use in the statement. | |
| PersonRecordIdExternalFieldName | String | False |
Specifies the external field name of the 'PersonRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Captures Chatter activity, including posts and updates, related to User records.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the feed item associated with a user record. | |
| ParentId | String | True |
User.Id |
Identifier of the user record this feed item is linked to. |
| Type | String | True |
Specifies the type of feed item, such as a post, comment, file, or link. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the feed item. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the feed item has been deleted from the system. | |
| CommentCount | Int | True |
Number of comments that have been made on this feed item. | |
| LikeCount | Int | True |
Number of likes this feed item has received. | |
| Title | String | True |
Optional title or subject line for the feed post. | |
| Body | String | True |
Main message content or description posted in the feed item. | |
| LinkUrl | String | True |
URL shared in the feed item, pointing to internal or external resources. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
Identifier of another record mentioned or referenced in the feed post. | |
| InsertedById | String | True |
User.Id |
Identifier of the user or automation that inserted the feed item, which might differ from the creator. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp reflecting the most recent update to the feed item. | |
| LastModifiedDate | Datetime | True |
Date and time when the feed item was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the feed item was created. |
Schema file for UserListView.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| ListViewId | String | False |
ListView.Id |
ID of the ListView associated with this record. |
| SobjectType | String | False |
Type classification for Sobject. | |
| LastViewedChart | String | False |
Field containing LastViewedChart information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserListViewCriterion.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UserListViewId | String | False |
UserListView.Id |
ID of the UserListView associated with this record. |
| SortOrder | Int | False |
Field containing SortOrder information. | |
| ColumnName | String | False |
Field containing ColumnName information. | |
| Operation | String | False |
Field containing Operation information. | |
| Value | String | False |
Field containing Value information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserLocalWebServerIdentity.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LocalWebServerIdentityToken | String | False |
Field containing LocalWebServerIdentityToken information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Logs authentication attempts, tracking successful and failed login attempts.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the user login record. | |
| UserId | String | True |
User.Id |
Identifier of the user associated with this login configuration. |
| IsFrozen | Bool | False |
Indicates whether the user's login access is currently frozen by an administrator. | |
| IsPasswordLocked | Bool | False |
Indicates whether the user's account is locked due to password policy violations or failed login attempts. | |
| LastModifiedById | String | True |
User.Id |
Identifier of the user or process that last modified the login settings. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LastModifiedDate | Datetime | True |
Date and time when the user login record was last updated. |
Schema file for UserPackageLicense.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| PackageLicenseId | String | False |
ID of the PackageLicense associated with this record. | |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores user-specific preferences for features, notifications, and customization settings.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the user preference record. | |
| UserId | String | False |
User.Id |
Identifier of the user associated with this preference setting. |
| Preference | String | False |
Name of the specific user preference being set, such as language, theme, or notification behavior. | |
| Value | String | False |
Value assigned to the user preference, which determines how the setting behaves. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent update to the preference record. |
Schema file for UserPrioritizedRecord.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| TargetId | String | False |
ID of the Target associated with this record. | |
| TargetIdType | String | False |
Specifies the type of the 'TargetId' polymorphic field to use in the statement. | |
| TargetIdExternalFieldName | String | False |
Specifies the external field name of the 'TargetId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| TargetKeyPrefix | String | True |
Field containing TargetKeyPrefix information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Manages user profile information, including name, email, and accessibility settings.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the user profile record. | |
| LastName | String | True |
Last name of the user as displayed in the profile. | |
| FirstName | String | True |
First name of the user as displayed in the profile. | |
| Name | String | True |
Full name of the user, typically a combination of first and last names. | |
| Title | String | True |
Job title of the user, displayed in their public profile. | |
| ManagerId | String | True |
UserProfile.Id |
Identifier of the user's manager, used to establish reporting hierarchy. |
| CompanyName | String | True |
Name of the company the user is associated with. | |
| AboutMe | String | True |
User-provided biography or description for their profile. | |
| String | True |
Email address associated with the user profile. | ||
| Phone | String | True |
Primary phone number for the user. | |
| MobilePhone | String | True |
Mobile phone number associated with the user profile. | |
| Fax | String | True |
Fax number listed in the user's contact information. | |
| Street | String | True |
Street address listed in the user's profile. | |
| City | String | True |
City listed in the user's address. | |
| State | String | True |
State or province listed in the user's address. | |
| PostalCode | String | True |
ZIP or postal code for the user's address. | |
| Country | String | True |
Country associated with the user's address. | |
| Latitude | Double | True |
Latitude coordinate for geolocation based on the user's address. | |
| Longitude | Double | True |
Longitude coordinate for geolocation based on the user's address. | |
| IsBadged | Boolean | True |
Indicates whether the user's profile photo includes a badge overlay. | |
| IsActive | Boolean | True |
Specifies whether the user profile is currently active. | |
| UserPreferencesActivityRemindersPopup | Boolean | True |
Indicates if the user receives pop-up reminders for upcoming activities. | |
| UserPreferencesEventRemindersCheckboxDefault | Boolean | True |
Specifies if event reminders are checked by default when creating new events. | |
| UserPreferencesTaskRemindersCheckboxDefault | Boolean | True |
Specifies if task reminders are enabled by default for new tasks. | |
| UserPreferencesReminderSoundOff | Boolean | True |
Indicates whether reminder sounds are turned off for the user. | |
| UserPreferencesDisableAllFeedsEmail | Boolean | True |
Disables all Chatter feed email notifications for the user. | |
| UserPreferencesDisableFollowersEmail | Boolean | True |
Prevents email notifications when someone follows the user. | |
| UserPreferencesDisableProfilePostEmail | Boolean | True |
Disables email alerts for posts made directly to the user's profile. | |
| UserPreferencesDisableChangeCommentEmail | Boolean | True |
Prevents notifications when comments are edited. | |
| UserPreferencesDisableLaterCommentEmail | Boolean | True |
Prevents notifications for later comments on posts the user commented on. | |
| UserPreferencesDisProfPostCommentEmail | Boolean | True |
Disables notifications for comments on the user's profile posts. | |
| UserPreferencesApexPagesDeveloperMode | Boolean | True |
Enables developer mode, displaying page structure and debug logs in the UI. | |
| UserPreferencesHideCSNGetChatterMobileTask | Boolean | True |
Hides the Chatter Mobile promotional task from the user interface. | |
| UserPreferencesDisableMentionsPostEmail | Boolean | True |
Disables notifications when the user is mentioned in a post. | |
| UserPreferencesDisMentionsCommentEmail | Boolean | True |
Disables notifications when the user is mentioned in a comment. | |
| UserPreferencesHideCSNDesktopTask | Boolean | True |
Hides the Chatter Desktop installation task from the user interface. | |
| UserPreferencesHideChatterOnboardingSplash | Boolean | True |
Suppresses the initial Chatter onboarding splash screen for the user. | |
| UserPreferencesHideSecondChatterOnboardingSplash | Boolean | True |
Suppresses the follow-up Chatter onboarding splash screen. | |
| UserPreferencesDisCommentAfterLikeEmail | Boolean | True |
Prevents notifications when comments are added after the user likes a post. | |
| UserPreferencesDisableLikeEmail | Boolean | True |
Disables email notifications when someone likes the user's posts. | |
| UserPreferencesDisableMessageEmail | Boolean | True |
Disables email notifications for private Chatter messages. | |
| UserPreferencesOptOutOfTouch | Boolean | True |
Indicates whether the user has opted out of stay-in-touch communications. | |
| UserPreferencesDisableBookmarkEmail | Boolean | True |
Disables email notifications for bookmarks on the user's content. | |
| UserPreferencesDisableSharePostEmail | Boolean | True |
Prevents notifications when a user's post is shared. | |
| UserPreferencesEnableAutoSubForFeeds | Boolean | True |
Automatically subscribes the user to Chatter feeds they interact with. | |
| UserPreferencesDisableFileShareNotificationsForApi | Boolean | True |
Disables file share notifications generated via the API. | |
| UserPreferencesShowTitleToExternalUsers | Boolean | True |
Allows external users to view the user's job title on their profile. | |
| UserPreferencesShowManagerToExternalUsers | Boolean | True |
Allows external users to view the user's manager on their profile. | |
| UserPreferencesShowEmailToExternalUsers | Boolean | True |
Allows external users to see the user's email address. | |
| UserPreferencesShowWorkPhoneToExternalUsers | Boolean | True |
Displays the user's work phone number to external users. | |
| UserPreferencesShowMobilePhoneToExternalUsers | Boolean | True |
Displays the user's mobile number to external users. | |
| UserPreferencesShowFaxToExternalUsers | Boolean | True |
Displays the user's fax number to external users. | |
| UserPreferencesShowStreetAddressToExternalUsers | Boolean | True |
Displays the user's street address to external users. | |
| UserPreferencesShowCityToExternalUsers | Boolean | True |
Displays the user's city to external users. | |
| UserPreferencesShowStateToExternalUsers | Boolean | True |
Displays the user's state or province to external users. | |
| UserPreferencesShowPostalCodeToExternalUsers | Boolean | True |
Displays the user's postal or ZIP code to external users. | |
| UserPreferencesShowCountryToExternalUsers | Boolean | True |
Displays the user's country to external users. | |
| UserPreferencesShowProfilePicToGuestUsers | Boolean | True |
Allows guest users to view the user's profile photo. | |
| UserPreferencesShowTitleToGuestUsers | Boolean | True |
Displays the user's job title to guest (unauthenticated) users. | |
| UserPreferencesShowCityToGuestUsers | Boolean | True |
Displays the user's city to guest users. | |
| UserPreferencesShowStateToGuestUsers | Boolean | True |
Displays the user's state or province to guest users. | |
| UserPreferencesShowPostalCodeToGuestUsers | Boolean | True |
Displays the user's postal or ZIP code to guest users. | |
| UserPreferencesShowCountryToGuestUsers | Boolean | True |
Displays the user's country to guest users. | |
| UserPreferencesHideS1BrowserUI | Boolean | True |
Hides the Salesforce mobile web interface when accessed from a desktop browser. | |
| FullPhotoUrl | String | True |
URL pointing to the user's full-size profile photo. | |
| SmallPhotoUrl | String | True |
URL pointing to the user's thumbnail-size profile photo. | |
| LastModifiedDate | Datetime | True |
Date and time when the user profile was last modified. | |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the profile. |
| SystemModstamp | Datetime | True |
System-generated timestamp of the most recent change to the profile record. |
Schema file for UserProvAccount.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SalesforceUserId | String | False |
User.Id |
ID of the SalesforceUser associated with this record. |
| ConnectedAppId | String | False |
ID of the ConnectedApp associated with this record. | |
| ExternalUserId | String | False |
ID of the ExternalUser associated with this record. | |
| ExternalUsername | String | False |
Field containing ExternalUsername information. | |
| ExternalEmail | String | False |
Field containing ExternalEmail information. | |
| ExternalFirstName | String | False |
Field containing ExternalFirstName information. | |
| ExternalLastName | String | False |
Field containing ExternalLastName information. | |
| LinkState | String | False |
State or province for Link address. | |
| Status | String | False |
Status of the record. | |
| DeletedDate | Datetime | False |
Date associated with Deleted. | |
| IsKnownLink | Bool | False |
Indicates whether the record has the KnownLink characteristic. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserProvAccountStaging.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ConnectedAppId | String | False |
ID of the ConnectedApp associated with this record. | |
| SalesforceUserId | String | False |
User.Id |
ID of the SalesforceUser associated with this record. |
| ExternalUserId | String | False |
ID of the ExternalUser associated with this record. | |
| ExternalUsername | String | False |
Field containing ExternalUsername information. | |
| ExternalEmail | String | False |
Field containing ExternalEmail information. | |
| ExternalFirstName | String | False |
Field containing ExternalFirstName information. | |
| ExternalLastName | String | False |
Field containing ExternalLastName information. | |
| LinkState | String | False |
State or province for Link address. | |
| Status | String | False |
Status of the record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserProvisioningConfig.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | False |
The unique name used by the API and managed packages. | |
| Language | String | False |
Language of the record or user interface. | |
| MasterLabel | String | False |
The custom object label that appears in the user interface. | |
| NamespacePrefix | String | True |
The namespace prefix associated with this object. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ConnectedAppId | String | False |
ID of the ConnectedApp associated with this record. | |
| Notes | String | False |
Field containing Notes information. | |
| Enabled | Bool | False |
Field containing Enabled information. | |
| ApprovalRequired | String | False |
Field containing ApprovalRequired information. | |
| UserAccountMapping | String | False |
Field containing UserAccountMapping information. | |
| EnabledOperations | String | False |
Field containing EnabledOperations information. | |
| OnUpdateAttributes | String | False |
Field containing OnUpdateAttributes information. | |
| LastReconDateTime | Datetime | False |
Field containing LastReconDateTime information. | |
| NamedCredentialId | String | False |
ID of the NamedCredential associated with this record. | |
| ReconFilter | String | False |
Field containing ReconFilter information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserProvisioningLog.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UserProvisioningRequestId | String | False |
ID of the UserProvisioningRequest associated with this record. | |
| ExternalUserId | String | False |
ID of the ExternalUser associated with this record. | |
| ExternalUsername | String | False |
Field containing ExternalUsername information. | |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| Status | String | False |
Status of the record. | |
| Details | String | False |
Field containing Details information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserProvisioningRequest.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | True |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SalesforceUserId | String | False |
User.Id |
ID of the SalesforceUser associated with this record. |
| ExternalUserId | String | False |
ID of the ExternalUser associated with this record. | |
| AppName | String | False |
Field containing AppName information. | |
| State | String | False |
State or province portion of the address. | |
| Operation | String | False |
Field containing Operation information. | |
| ScheduleDate | Datetime | False |
Date associated with Schedule. | |
| ConnectedAppId | String | False |
ID of the ConnectedApp associated with this record. | |
| UserProvConfigId | String | False |
ID of the UserProvConfig associated with this record. | |
| UserProvAccountId | String | False |
ID of the UserProvAccount associated with this record. | |
| ApprovalStatus | String | False |
Status of the Approval. | |
| ManagerId | String | False |
User.Id |
ID of the Manager associated with this record. |
| RetryCount | Int | False |
Number of Retry associated with this record. | |
| ParentId | String | False |
ID of the parent object in the hierarchy. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserProvMockTarget.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| ExternalUserId | String | False |
ID of the ExternalUser associated with this record. | |
| ExternalUsername | String | False |
Field containing ExternalUsername information. | |
| ExternalEmail | String | False |
Field containing ExternalEmail information. | |
| ExternalFirstName | String | False |
Field containing ExternalFirstName information. | |
| ExternalLastName | String | False |
Field containing ExternalLastName information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Defines the role hierarchy in Salesforce, controlling data access and reporting relationships.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the user role record. | |
| Name | String | False |
Name of the role, used for display in role hierarchy and sharing settings. | |
| ParentRoleId | String | False |
UserRole.Id |
Identifier of the parent role in the hierarchy, used to define reporting and access inheritance. |
| RollupDescription | String | False |
Description of the role, often used to clarify its purpose or scope. | |
| OpportunityAccessForAccountOwner | String | False |
Defines the level of opportunity access granted to the account owner, such as View or Edit. | |
| CaseAccessForAccountOwner | String | False |
Specifies the level of case access granted to the account owner, such as Read or Edit. | |
| ContactAccessForAccountOwner | String | True |
Determines the level of access the account owner has to associated contacts. | |
| ForecastUserId | String | False |
User.Id |
Identifier of the user associated with forecasting responsibilities for this role. |
| MayForecastManagerShare | Bool | True |
Indicates whether the forecast manager for this role can share forecasts with others. | |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the role. |
| DeveloperName | String | False |
API name or unique developer label used for referencing this role in code. | |
| PortalAccountId | String | False |
Account.Id |
Identifier of the account associated with this role in a portal context. |
| PortalType | String | False |
Type of portal (such as Customer or Partner) this role is associated with. | |
| PortalAccountOwnerId | String | True |
User.Id |
Identifier of the user who owns the portal account associated with this role. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp reflecting the most recent change to the role record. | |
| LastModifiedDate | Datetime | True |
Date and time when the user role was last modified. |
Schema file for UserTerritory2Association.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| UserId | String | False |
User.Id |
ID of the User associated with this record. |
| Territory2Id | String | False |
Territory2.Id |
ID of the Territory2 associated with this record. |
| IsActive | Bool | True |
Indicates whether the record is active. | |
| RoleInTerritory2 | String | False |
Field containing RoleInTerritory2 information. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for UserTerritory2AssocLog.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| UserId | String | True |
User.Id |
ID of the User associated with this record. |
| Territory2Id | String | True |
Territory2.Id |
ID of the Territory2 associated with this record. |
| RoleInTerritory2 | String | True |
Field containing RoleInTerritory2 information. | |
| StartDate | Datetime | True |
Start date for the record or activity. | |
| EndDate | Datetime | True |
End date for the record or activity. | |
| Territory2ModelId | String | True |
ID of the Territory2Model associated with this record. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Stores votes cast on Chatter posts and comments, allowing users to indicate approval or agreement.
The Salesforce Cloud requires filtering on ParentId, Type, or Id in order to perform the query.
For example:
SELECT * FROM Vote WHERE ParentId = 'your_value' SELECT * FROM Vote WHERE Type = 'your_value' SELECT * FROM Vote WHERE Id = 'your_value'
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the vote record. | |
| IsDeleted | Bool | True |
Indicates whether the vote has been deleted from the system. | |
| ParentId | String | False |
Identifier of the record that the vote is associated with, such as an Idea or FeedItem. | |
| ParentIdType | String | False |
Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | False |
Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Type | String | False |
Specifies the type of vote, such as Up or Down. | |
| CreatedDate | Datetime | True |
Date and time when the vote was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who cast the vote. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the vote record. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for WaveAutoInstallRequest.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| TemplateApiName | String | False |
Field containing TemplateApiName information. | |
| TemplateVersion | String | False |
Field containing TemplateVersion information. | |
| FolderId | String | False |
Folder.Id |
ID of the Folder associated with this record. |
| RequestType | String | False |
Type classification for Request. | |
| RequestStatus | String | False |
Status of the Request. | |
| FailedReason | String | True |
Field containing FailedReason information. | |
| Configuration | String | False |
Field containing Configuration information. | |
| RequestLog | String | False |
Field containing RequestLog information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Manages custom web links added to Salesforce page layouts, providing quick access to external resources.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the custom Web Link record. | |
| PageOrSobjectType | String | False |
API name of the page or sObject where the Web Link is available. | |
| Name | String | False |
Developer name of the Web Link, used for reference in the metadata API. | |
| IsProtected | Bool | False |
Indicates whether the Web Link is protected from being edited or deleted in certain contexts. | |
| Url | String | False |
Target URL that the Web Link directs users to when clicked. | |
| EncodingKey | String | False |
Character encoding format for the Web Link, such as UTF-8. | |
| LinkType | String | False |
Specifies the content source type, such as URL, S-Control, or Visualforce Page. | |
| OpenType | String | False |
Specifies how the link should be opened, such as in a new window or existing window. | |
| Height | Int | False |
Height in pixels for the window or frame where the Web Link content is displayed. | |
| Width | Int | False |
Width in pixels for the window or frame where the Web Link content is displayed. | |
| ShowsLocation | Bool | False |
Indicates whether the browser's address bar is displayed when the link opens. | |
| HasScrollbars | Bool | False |
Indicates whether scrollbars are visible in the new window or frame. | |
| HasToolbar | Bool | False |
Indicates whether the browser's toolbar is shown in the window. | |
| HasMenubar | Bool | False |
Indicates whether the menu bar is visible in the browser window. | |
| ShowsStatus | Bool | False |
Indicates whether the browser's status bar is shown at the bottom of the window. | |
| IsResizable | Bool | False |
Specifies whether the user can resize the new browser window that opens the Web Link. | |
| Position | String | False |
Specifies the position of the new window on the screen, such as center or specific coordinates. | |
| ScontrolId | String | False |
Identifier of the associated S-Control, if the link points to a custom S-Control. | |
| MasterLabel | String | False |
User-facing label or display name for the Web Link. | |
| Description | String | False |
Optional description providing context about the purpose or behavior of the Web Link. | |
| DisplayType | String | False |
Indicates where the Web Link appears, such as in a list button or detail page link. | |
| RequireRowSelection | Bool | False |
Specifies whether a row must be selected before the Web Link becomes active. | |
| NamespacePrefix | String | True |
Namespace prefix of the Web Link, typically used in managed packages. | |
| CreatedDate | Datetime | True |
Date and time when the Web Link record was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who created the Web Link. |
| LastModifiedById | String | True |
User.Id |
Identifier of the user who last modified the Web Link. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp of the most recent change to the Web Link record. | |
| LastModifiedDate | Datetime | True |
Date and time when the Web Link record was last modified. |
Schema file for WebStore.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | False |
Name of the record. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| Type | String | False |
Type of account or classification. | |
| OptionsGuestBrowsingEnabled | Bool | True |
Field containing OptionsGuestBrowsingEnabled information. | |
| OptionsGuestCartEnabled | Bool | True |
Field containing OptionsGuestCartEnabled information. | |
| OptionsGuestCheckoutEnabled | Bool | True |
Field containing OptionsGuestCheckoutEnabled information. | |
| OptionsCartAsyncProcessingEnabled | Bool | True |
Field containing OptionsCartAsyncProcessingEnabled information. | |
| OptionsDuplicateCartItemsEnabled | Bool | True |
Field containing OptionsDuplicateCartItemsEnabled information. | |
| OptionsSkuDetectionEnabled | Bool | True |
Field containing OptionsSkuDetectionEnabled information. | |
| OptionsPreserveGuestCartEnabled | Bool | True |
Field containing OptionsPreserveGuestCartEnabled information. | |
| OptionsSplitShipmentEnabled | Bool | True |
Field containing OptionsSplitShipmentEnabled information. | |
| DefaultTaxLocaleType | String | True |
Type classification for DefaultTaxLocale. | |
| ExternalReference | String | True |
Field containing ExternalReference information. | |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for WorkOrder.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| OwnerId | String | False |
ID of the user who owns the record. | |
| OwnerIdType | String | False |
Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | False |
Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| WorkOrderNumber | String | True |
WorkOrder identification number. | |
| CurrencyIsoCode | String | False |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| AccountId | String | False |
Account.Id |
ID of the Account associated with this record. |
| ContactId | String | False |
Contact.Id |
ID of the Contact associated with this record. |
| CaseId | String | False |
Case.Id |
ID of the Case associated with this record. |
| EntitlementId | String | False |
Entitlement.Id |
ID of the Entitlement associated with this record. |
| ServiceContractId | String | False |
ID of the ServiceContract associated with this record. | |
| AssetId | String | False |
Asset.Id |
ID of the Asset associated with this record. |
| Street | String | False |
Street address. | |
| City | String | False |
City portion of the address. | |
| State | String | False |
State or province portion of the address. | |
| PostalCode | String | False |
Postal code portion of the address. | |
| Country | String | False |
Country portion of the address. | |
| Latitude | Double | False |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | False |
Used with Latitude to specify the precise geolocation of an address. | |
| GeocodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| Description | String | False |
Text description of the record. | |
| StartDate | Datetime | False |
Start date for the record or activity. | |
| EndDate | Datetime | False |
End date for the record or activity. | |
| Subject | String | False |
Subject or title of the activity. | |
| RootWorkOrderId | String | True |
WorkOrder.Id |
ID of the RootWorkOrder associated with this record. |
| Status | String | False |
Status of the record. | |
| Priority | String | False |
Priority level of the record. | |
| Tax | Decimal | False |
Tax amount for the record. | |
| Pricebook2Id | String | False |
Pricebook2.Id |
ID of the Pricebook2 associated with this record. |
| Discount | Double | True |
Percentage discount from the list price. | |
| GrandTotal | Decimal | True |
Grand total amount including tax. | |
| ParentWorkOrderId | String | False |
WorkOrder.Id |
ID of the ParentWorkOrder associated with this record. |
| IsClosed | Bool | True |
Indicates whether the record is closed. | |
| IsStopped | Bool | False |
Indicates whether the record has the Stopped characteristic. | |
| StopStartDate | Datetime | True |
Date associated with StopStart. | |
| SlaStartDate | Datetime | False |
Date associated with SlaStart. | |
| SlaExitDate | Datetime | True |
Date associated with SlaExit. | |
| BusinessHoursId | String | False |
ID of the business hours associated with this record. | |
| MilestoneStatus | String | True |
Status of the Milestone. | |
| Duration | Double | False |
Field containing Duration information. | |
| DurationType | String | False |
Type classification for Duration. | |
| DurationInMinutes | Double | True |
Field containing DurationInMinutes information. | |
| ServiceAppointmentCount | Int | True |
Number of ServiceAppointment associated with this record. | |
| StatusCategory | String | True |
Field containing StatusCategory information. | |
| LocationId | String | False |
Location.Id |
ID of the Location associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for WorkOrderFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
WorkOrder.Id |
ID of the parent object in the hierarchy. |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Schema file for WorkOrderLineItem.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| LineItemNumber | String | True |
LineItem identification number. | |
| CurrencyIsoCode | String | True |
ISO code for the currency in which the revenue amount is expressed. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the record. |
| LastViewedDate | Datetime | True |
Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | True |
Date and time when the record was last referenced. | |
| WorkOrderId | String | False |
WorkOrder.Id |
ID of the WorkOrder associated with this record. |
| ParentWorkOrderLineItemId | String | False |
ID of the ParentWorkOrderLineItem associated with this record. | |
| Product2Id | String | False |
Product2.Id |
ID of the Product associated with this record. |
| AssetId | String | False |
Asset.Id |
ID of the Asset associated with this record. |
| OrderId | String | False |
Order.Id |
ID of the Order associated with this record. |
| RootWorkOrderLineItemId | String | True |
ID of the RootWorkOrderLineItem associated with this record. | |
| Description | String | False |
Text description of the record. | |
| StartDate | Datetime | False |
Start date for the record or activity. | |
| EndDate | Datetime | False |
End date for the record or activity. | |
| Status | String | False |
Status of the record. | |
| PricebookEntryId | String | False |
ID of the PricebookEntry associated with this record. | |
| Quantity | Double | False |
Quantity of the product. | |
| UnitPrice | Decimal | False |
Price per unit for the product. | |
| Discount | Double | False |
Percentage discount from the list price. | |
| ListPrice | Decimal | True |
List price for the product. | |
| Subtotal | Decimal | True |
Subtotal amount before tax. | |
| TotalPrice | Decimal | True |
Total price for the line item. | |
| Duration | Double | False |
Field containing Duration information. | |
| DurationType | String | False |
Type classification for Duration. | |
| DurationInMinutes | Double | True |
Field containing DurationInMinutes information. | |
| Street | String | False |
Street address. | |
| City | String | False |
City portion of the address. | |
| State | String | False |
State or province portion of the address. | |
| PostalCode | String | False |
Postal code portion of the address. | |
| Country | String | False |
Country portion of the address. | |
| Latitude | Double | False |
Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | False |
Used with Latitude to specify the precise geolocation of an address. | |
| GeocodeAccuracy | String | False |
Accuracy level of the geocode for the address. | |
| Subject | String | False |
Subject or title of the activity. | |
| StatusCategory | String | True |
Field containing StatusCategory information. | |
| IsClosed | Bool | True |
Indicates whether the record is closed. | |
| Priority | String | False |
Priority level of the record. | |
| ServiceAppointmentCount | Int | True |
Number of ServiceAppointment associated with this record. | |
| LocationId | String | False |
Location.Id |
ID of the Location associated with this record. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. |
Schema file for WorkOrderLineItemFeed.
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the record. | |
| ParentId | String | True |
ID of the parent object in the hierarchy. | |
| Type | String | True |
Type of account or classification. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the record. |
| CreatedByIdType | String | False |
Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | False |
Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | True |
Indicates whether the record has been moved to the Recycle Bin. | |
| CommentCount | Int | True |
Number of comments on this feed item. | |
| LikeCount | Int | True |
Number of likes on this feed item. | |
| Title | String | True |
Title of the contact or person, for example CEO or Vice President. | |
| Body | String | True |
The content of the feed item or post. | |
| LinkUrl | String | True |
URL associated with the feed item. | |
| IsRichText | Bool | True |
Indicates whether the content contains rich text formatting. | |
| RelatedRecordId | String | True |
ID of the record associated with this feed item. | |
| InsertedById | String | True |
User.Id |
ID of the user who created this feed item. |
| InsertedByIdType | String | False |
Specifies the type of the 'InsertedById' polymorphic field to use in the statement. | |
| InsertedByIdExternalFieldName | String | False |
Specifies the external field name of the 'InsertedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BestCommentId | String | True |
FeedComment.Id |
ID of the comment marked as the best comment. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
Date and time when the record was last modified by a user or by an automated process. | |
| LastModifiedDate | Datetime | True |
Date and time when the record was last modified. | |
| CreatedDate | Datetime | True |
Date and time when the record was created. |
Views are similar to tables in the way that data is represented; however, views are read-only.
Queries can be executed against a view as if it were a normal table.
| Name | Description |
| AcceptedEventRelation | Stores relationships between events and attendees who have accepted invitations in Salesforce. |
| AccountHistory | Maintains a historical record of changes made to Account fields that have field history tracking enabled. |
| AccountUserTerritory2View | Schema file for AccountUserTerritory2View. |
| ActiveFeatureLicenseMetric | Schema file for ActiveFeatureLicenseMetric. |
| ActivePermSetLicenseMetric | Schema file for ActivePermSetLicenseMetric. |
| ActiveProfileMetric | Schema file for ActiveProfileMetric. |
| AIApplication | Schema file for AIApplication. |
| AIApplicationConfig | Schema file for AIApplicationConfig. |
| AIInsightAction | Schema file for AIInsightAction. |
| AIInsightFeedback | Schema file for AIInsightFeedback. |
| AIInsightReason | Schema file for AIInsightReason. |
| AIInsightValue | Schema file for AIInsightValue. |
| AnalyticsAssetAction | Schema file for AnalyticsAssetAction. |
| AnalyticsButtonWidgetDef | Schema file for AnalyticsButtonWidgetDef. |
| AnalyticsContainerWidgetDef | Schema file for AnalyticsContainerWidgetDef. |
| AnalyticsDashboard | Schema file for AnalyticsDashboard. |
| AnalyticsDashboardLayout | Schema file for AnalyticsDashboardLayout. |
| AnalyticsDashboardPage | Schema file for AnalyticsDashboardPage. |
| AnalyticsDashboardViewDef | Schema file for AnalyticsDashboardViewDef. |
| AnalyticsDashboardViewSpec | Schema file for AnalyticsDashboardViewSpec. |
| AnalyticsDashboardWidget | Schema file for AnalyticsDashboardWidget. |
| AnalyticsDashPageWidget | Schema file for AnalyticsDashPageWidget. |
| AnalyticsFilterWidgetDef | Schema file for AnalyticsFilterWidgetDef. |
| AnalyticsMetricWidgetDef | Schema file for AnalyticsMetricWidgetDef. |
| AnalyticsParamWidgetDef | Schema file for AnalyticsParamWidgetDef. |
| AnalyticsTextWidgetDef | Schema file for AnalyticsTextWidgetDef. |
| AnalyticsVizWidgetDef | Schema file for AnalyticsVizWidgetDef. |
| AnalyticsWorkspace | Schema file for AnalyticsWorkspace. |
| AnalyticsWorkspaceAsset | Schema file for AnalyticsWorkspaceAsset. |
| ApexPageInfo | Schema file for ApexPageInfo. |
| ApexTypeImplementor | Schema file for ApexTypeImplementor. |
| ApiAnomalyEventStore | Schema file for ApiAnomalyEventStore. |
| ApiEvent | Schema file for ApiEvent. |
| AppDefinition | Schema file for AppDefinition. |
| ApprovalSubmission | Schema file for ApprovalSubmission. |
| ApprovalSubmissionDetail | Schema file for ApprovalSubmissionDetail. |
| ApprovalWorkItem | Schema file for ApprovalWorkItem. |
| AppTabMember | Schema file for AppTabMember. |
| AssetAction | Schema file for AssetAction. |
| AssetActionSource | Schema file for AssetActionSource. |
| AssetHistory | Schema file for AssetHistory. |
| AssetRelationshipHistory | Schema file for AssetRelationshipHistory. |
| AssetStatePeriod | Schema file for AssetStatePeriod. |
| AssignmentRule | Defines rules for automatically assigning leads and cases to the appropriate owners. |
| AssociatedLocationHistory | Schema file for AssociatedLocationHistory. |
| AsyncApexJob | Tracks the execution of asynchronous Apex jobs, including batch and scheduled jobs. |
| AuraDefinitionBundleInfo | Schema file for AuraDefinitionBundleInfo. |
| AuraDefinitionInfo | Schema file for AuraDefinitionInfo. |
| AuthConfig | Schema file for AuthConfig. |
| AuthorizationFormConsentHistory | Schema file for AuthorizationFormConsentHistory. |
| AuthorizationFormDataUseHistory | Schema file for AuthorizationFormDataUseHistory. |
| AuthorizationFormHistory | Schema file for AuthorizationFormHistory. |
| AuthorizationFormTextHistory | Schema file for AuthorizationFormTextHistory. |
| BackgroundOperation | Schema file for BackgroundOperation. |
| BriefcaseDefinition | Schema file for BriefcaseDefinition. |
| BriefcaseRule | Schema file for BriefcaseRule. |
| BriefcaseRuleFilter | Schema file for BriefcaseRuleFilter. |
| BulkApiResultEventStore | Schema file for BulkApiResultEventStore. |
| Calendar | Schema file for Calendar. |
| Campaign | Tracks marketing campaigns, including outreach activities and associated leads, contacts, and opportunities. |
| CampaignHistory | Schema file for CampaignHistory. |
| CampaignMemberStatus | Defines possible statuses for campaign members, such as Sent, Responded, or Attended. |
| CaseHistory | Maintains a historical record of changes made to case fields that have history tracking enabled. |
| CaseHistory2 | Schema file for CaseHistory2. |
| CaseStatus | Defines possible statuses for cases, such as New, In Progress, or Closed. |
| ChatRetirementRdyMetrics | Schema file for ChatRetirementRdyMetrics. |
| ChatterActivity | Tracks Chatter engagement, such as posts, comments, and likes, across Salesforce records. |
| ColorDefinition | Schema file for ColorDefinition. |
| CommSubscriptionChannelTypeHistory | Schema file for CommSubscriptionChannelTypeHistory. |
| CommSubscriptionConsentHistory | Schema file for CommSubscriptionConsentHistory. |
| CommSubscriptionHistory | Schema file for CommSubscriptionHistory. |
| CommSubscriptionTimingHistory | Schema file for CommSubscriptionTimingHistory. |
| Community | Stores configuration details for Salesforce communities, including branding, themes, and settings. |
| ConnectedApplication | Schema file for ConnectedApplication. |
| ConsumptionRateHistory | Schema file for ConsumptionRateHistory. |
| ConsumptionScheduleHistory | Schema file for ConsumptionScheduleHistory. |
| ContactHistory | Maintains a historical record of changes made to Contact fields that have history tracking enabled. |
| ContactPointAddressHistory | Schema file for ContactPointAddressHistory. |
| ContactPointConsentHistory | Schema file for ContactPointConsentHistory. |
| ContactPointEmailHistory | Schema file for ContactPointEmailHistory. |
| ContactPointPhoneHistory | Schema file for ContactPointPhoneHistory. |
| ContactPointTypeConsentHistory | Schema file for ContactPointTypeConsentHistory. |
| ContactShare | Controls sharing settings for Contact records, defining user access levels. |
| ContentDocumentHistory | Maintains a historical record of changes made to Content Documents. |
| ContentFolderItem | Schema file for ContentFolderItem. |
| ContentFolderLink | Schema file for ContentFolderLink. |
| ContentTaxonomyTermRelationshipType | Schema file for ContentTaxonomyTermRelationshipType. |
| ContentVersionHistory | Stores the history of changes made to Content Versions, tracking modifications and updates. |
| ContextParamMap | Schema file for ContextParamMap. |
| ContractHistory | Maintains a historical record of changes made to Contract fields that have history tracking enabled. |
| ContractLineItemHistory | Schema file for ContractLineItemHistory. |
| ContractStatus | Defines possible statuses for contracts, such as Draft, Active, or Expired. |
| Conversation | Schema file for Conversation. |
| ConversationParticipant | Schema file for ConversationParticipant. |
| ConvMessageSendRequest | Schema file for ConvMessageSendRequest. |
| CredentialStuffingEventStore | Schema file for CredentialStuffingEventStore. |
| CreditMemoHistory | Schema file for CreditMemoHistory. |
| CreditMemoInvApplicationHistory | Schema file for CreditMemoInvApplicationHistory. |
| CreditMemoLineHistory | Schema file for CreditMemoLineHistory. |
| CronJobDetail | Stores details of scheduled jobs in Salesforce, tracking job execution and scheduling information. |
| CronTrigger | Defines time-based triggers for scheduled Apex jobs, controlling when they execute. |
| CustomHttpHeader | Schema file for CustomHttpHeader. |
| CustomPermission | Schema file for CustomPermission. |
| CustomPermissionDependency | Schema file for CustomPermissionDependency. |
| Dashboard | Stores metadata for Salesforce dashboards, which provide visual reports and key performance metrics. |
| DashboardComponent | Represents individual components within a dashboard, such as charts, tables, or metrics. |
| DataAssessmentFieldMetric | Schema file for DataAssessmentFieldMetric. |
| DataAssessmentMetric | Schema file for DataAssessmentMetric. |
| DataAssessmentValueMetric | Schema file for DataAssessmentValueMetric. |
| DatacloudAddress | Schema file for DatacloudAddress. |
| DatacloudCompany | Schema file for DatacloudCompany. |
| DatacloudContact | Schema file for DatacloudContact. |
| DatacloudDandBCompany | Schema file for DatacloudDandBCompany. |
| DatacloudOwnedEntity | Schema file for DatacloudOwnedEntity. |
| DatacloudPurchaseUsage | Schema file for DatacloudPurchaseUsage. |
| DataStatistics | Schema file for DataStatistics. |
| DataType | Schema file for DataType. |
| DataUseLegalBasisHistory | Schema file for DataUseLegalBasisHistory. |
| DataUsePurposeHistory | Schema file for DataUsePurposeHistory. |
| DataWeaveResource | Schema file for DataWeaveResource. |
| DatedConversionRate | Schema file for DatedConversionRate. |
| DeclinedEventRelation | Tracks relationships between events and attendees who have declined invitations. |
| DeleteEvent | Schema file for DeleteEvent. |
| Domain | Stores details about custom domains configured for Salesforce sites and communities. |
| DomainSite | Links custom domains to specific Salesforce sites, managing domain associations. |
| DuplicateRule | Schema file for DuplicateRule. |
| EmbeddedServiceDetail | Schema file for EmbeddedServiceDetail. |
| EmbeddedServiceLabel | Schema file for EmbeddedServiceLabel. |
| EngagementChannelTypeHistory | Schema file for EngagementChannelTypeHistory. |
| EntitlementHistory | Schema file for EntitlementHistory. |
| EntityDefinition | Schema file for EntityDefinition. |
| EntityMilestoneHistory | Schema file for EntityMilestoneHistory. |
| EntityParticle | Schema file for EntityParticle. |
| EventBusSubscriber | Schema file for EventBusSubscriber. |
| EventLogFile | Schema file for EventLogFile. |
| EventRelayConfig | Schema file for EventRelayConfig. |
| EventRelayFeedback | Schema file for EventRelayFeedback. |
| ExpressionSetView | Schema file for ExpressionSetView. |
| ExternalAIModel | Schema file for ExternalAIModel. |
| ExternalClientApplication | Schema file for ExternalClientApplication. |
| ExternalDataSource | Schema file for ExternalDataSource. |
| ExternalDataSrcDescriptor | Schema file for ExternalDataSrcDescriptor. |
| ExtlClntAppAndroidPushConfig | Schema file for ExtlClntAppAndroidPushConfig. |
| ExtlClntAppApplePushConfig | Schema file for ExtlClntAppApplePushConfig. |
| ExtlClntAppMobileSettings | Schema file for ExtlClntAppMobileSettings. |
| ExtlClntAppMobPlcyConfig | Schema file for ExtlClntAppMobPlcyConfig. |
| ExtlClntAppNotifSettings | Schema file for ExtlClntAppNotifSettings. |
| ExtlClntAppNotifType | Schema file for ExtlClntAppNotifType. |
| ExtlClntAppOauthConsumer | Schema file for ExtlClntAppOauthConsumer. |
| ExtlClntAppOauthIpRange | Schema file for ExtlClntAppOauthIpRange. |
| ExtlClntAppOauthPlcyAttr | Schema file for ExtlClntAppOauthPlcyAttr. |
| ExtlClntAppOauthPlcyCnfg | Schema file for ExtlClntAppOauthPlcyCnfg. |
| ExtlClntAppOauthPlcyCustmScp | Schema file for ExtlClntAppOauthPlcyCustmScp. |
| ExtlClntAppOauthSetAttr | Schema file for ExtlClntAppOauthSetAttr. |
| ExtlClntAppOauthSetCustmScp | Schema file for ExtlClntAppOauthSetCustmScp. |
| ExtlClntAppOauthSettings | Schema file for ExtlClntAppOauthSettings. |
| ExtlClntAppPlcyCnfg | Schema file for ExtlClntAppPlcyCnfg. |
| ExtlClntAppPushPolicyConfig | Schema file for ExtlClntAppPushPolicyConfig. |
| ExtlClntAppPushSettings | Schema file for ExtlClntAppPushSettings. |
| ExtlClntAppSamplePlcyCnfg | Schema file for ExtlClntAppSamplePlcyCnfg. |
| ExtlClntAppSampleSettings | Schema file for ExtlClntAppSampleSettings. |
| FeedPollChoice | Stores poll choices created in Chatter posts, allowing users to vote on different options. |
| FeedPollVote | Tracks user votes on Chatter polls, recording poll responses and selections. |
| FeedRevision | Schema file for FeedRevision. |
| FieldDefinition | Schema file for FieldDefinition. |
| FieldRelationships | Stores metadata about relationship fields within a table, identifying how objects are linked and the types of records they can reference. |
| FieldSecurityClassification | Schema file for FieldSecurityClassification. |
| FileEventStore | Schema file for FileEventStore. |
| FileSearchActivity | Schema file for FileSearchActivity. |
| FiscalYearSettings | Stores fiscal year configurations, defining the start date and structure for financial reporting. |
| FlexQueueItem | Schema file for FlexQueueItem. |
| FlowDefinitionView | Schema file for FlowDefinitionView. |
| FlowInterviewLog | Schema file for FlowInterviewLog. |
| FlowInterviewLogEntry | Schema file for FlowInterviewLogEntry. |
| FlowOrchestrationVersion | Schema file for FlowOrchestrationVersion. |
| FlowRecordElement | Schema file for FlowRecordElement. |
| FlowRecordElementOccurrence | Schema file for FlowRecordElementOccurrence. |
| FlowRecordVersionOccurrence | Schema file for FlowRecordVersionOccurrence. |
| FlowTestResult | Schema file for FlowTestResult. |
| FlowTestView | Schema file for FlowTestView. |
| FlowVariableView | Schema file for FlowVariableView. |
| FlowVersionView | Schema file for FlowVersionView. |
| FormulaFunction | Schema file for FormulaFunction. |
| FormulaFunctionAllowedType | Schema file for FormulaFunctionAllowedType. |
| FormulaFunctionCategory | Schema file for FormulaFunctionCategory. |
| Formulas | This table lists formulas for the specified TableName. |
| GrantedByLicense | Schema file for GrantedByLicense. |
| GuestUserAnomalyEventStore | Schema file for GuestUserAnomalyEventStore. |
| IconDefinition | Schema file for IconDefinition. |
| IdentityProviderEventStore | Schema file for IdentityProviderEventStore. |
| IdentityVerificationEvent | Schema file for IdentityVerificationEvent. |
| IdpEventLog | Schema file for IdpEventLog. |
| ImageHistory | Schema file for ImageHistory. |
| IndividualHistory | Schema file for IndividualHistory. |
| InstalledMobileApp | Schema file for InstalledMobileApp. |
| InvoiceHistory | Schema file for InvoiceHistory. |
| InvoiceLineHistory | Schema file for InvoiceLineHistory. |
| KnowledgeableUser | Schema file for KnowledgeableUser. |
| LeadHistory | Maintains a historical record of changes made to Lead fields that have history tracking enabled. |
| LeadStatus | Defines possible statuses for Leads, such as Open, Qualified, or Converted. |
| LegalEntityHistory | Schema file for LegalEntityHistory. |
| LightningExitByPageMetrics | Schema file for LightningExitByPageMetrics. |
| LightningToggleMetrics | Schema file for LightningToggleMetrics. |
| LightningUriEvent | Schema file for LightningUriEvent. |
| LightningUsageByAppTypeMetrics | Schema file for LightningUsageByAppTypeMetrics. |
| LightningUsageByBrowserMetrics | Schema file for LightningUsageByBrowserMetrics. |
| LightningUsageByFlexiPageMetrics | Schema file for LightningUsageByFlexiPageMetrics. |
| LightningUsageByPageMetrics | Schema file for LightningUsageByPageMetrics. |
| ListView | Schema file for ListView. |
| ListViewChartInstance | Schema file for ListViewChartInstance. |
| ListViewEvent | Schema file for ListViewEvent. |
| LocationGroupHistory | Schema file for LocationGroupHistory. |
| LocationHistory | Schema file for LocationHistory. |
| LoginAnomalyEventStore | Schema file for LoginAnomalyEventStore. |
| LoginAsEvent | Schema file for LoginAsEvent. |
| LoginEvent | Schema file for LoginEvent. |
| LoginGeo | Schema file for LoginGeo. |
| LoginHistory | Logs user login attempts, tracking access details such as IP addresses and login timestamps. |
| LogoutEvent | Schema file for LogoutEvent. |
| MacroHistory | Schema file for MacroHistory. |
| ManagedContent | Schema file for ManagedContent. |
| ManagedContentChannel | Schema file for ManagedContentChannel. |
| ManagedContentSpace | Schema file for ManagedContentSpace. |
| ManagedContentVariant | Schema file for ManagedContentVariant. |
| MatchingInformation | Schema file for MatchingInformation. |
| MatchingRule | Schema file for MatchingRule. |
| MatchingRuleItem | Schema file for MatchingRuleItem. |
| MessagingEndUserHistory | Schema file for MessagingEndUserHistory. |
| MessagingSessionHistory | Schema file for MessagingSessionHistory. |
| MLModel | Schema file for MLModel. |
| MLModelFactor | Schema file for MLModelFactor. |
| MLModelFactorComponent | Schema file for MLModelFactorComponent. |
| MLModelMetric | Schema file for MLModelMetric. |
| MLPredictionDefinition | Schema file for MLPredictionDefinition. |
| MLRecommendationDefinition | Schema file for MLRecommendationDefinition. |
| MsgChannelAvailability | Schema file for MsgChannelAvailability. |
| NamedCredential | Schema file for NamedCredential. |
| OauthToken | Schema file for OauthToken. |
| ObjectUserTerritory2View | Schema file for ObjectUserTerritory2View. |
| OpportunityFieldHistory | Maintains a historical record of changes made to opportunity fields that have history tracking enabled. |
| OpportunityHistory | Tracks stage changes and progress updates for opportunity records. |
| OpportunityRelatedDeleteLog | Schema file for OpportunityRelatedDeleteLog. |
| OpportunityStage | Defines the stages of an opportunity in the sales process, such as Prospecting, Negotiation, or Closed Won. |
| OrderAdjustmentGroupHistory | Schema file for OrderAdjustmentGroupHistory. |
| OrderChangeLog | Schema file for OrderChangeLog. |
| OrderChangeLogHistory | Schema file for OrderChangeLogHistory. |
| OrderDeliveryGroupHistory | Schema file for OrderDeliveryGroupHistory. |
| OrderDeliveryMethodHistory | Schema file for OrderDeliveryMethodHistory. |
| OrderHistory | Schema file for OrderHistory. |
| OrderItemAdjustmentLineItemHistory | Schema file for OrderItemAdjustmentLineItemHistory. |
| OrderItemHistory | Schema file for OrderItemHistory. |
| OrderItemRelationshipHistory | Schema file for OrderItemRelationshipHistory. |
| OrderItemTaxLineItemHistory | Schema file for OrderItemTaxLineItemHistory. |
| OrderItemType | Schema file for OrderItemType. |
| OrderShare | Schema file for OrderShare. |
| OrderStatus | Schema file for OrderStatus. |
| OwnerChangeOptionInfo | Schema file for OwnerChangeOptionInfo. |
| PackageLicense | Schema file for PackageLicense. |
| Participant | Schema file for Participant. |
| PartnerRole | Defines roles assigned to partners in partner relationships, such as Distributor or Reseller. |
| PartyConsentHistory | Schema file for PartyConsentHistory. |
| PaymentMethod | Schema file for PaymentMethod. |
| Period | Stores time period records used in forecasting and financial reporting. |
| PermissionSetEventStore | Schema file for PermissionSetEventStore. |
| PermissionSetLicense | Tracks licenses for permission sets, defining how many users can be assigned to them. |
| PicklistValueInfo | Schema file for PicklistValueInfo. |
| PickListValues | This table lists picklist values for the specified TableName. |
| PlatformAction | Schema file for PlatformAction. |
| PlatformEventUsageMetric | Schema file for PlatformEventUsageMetric. |
| PolymorphicColumnsRelationships | Lists polymorphic columns relationships in the specified table. |
| Pricebook2History | Tracks historical changes made to Pricebook2 records, including updates to pricing structures. |
| PricebookEntryHistory | Schema file for PricebookEntryHistory. |
| PrivacyJobSession | Schema file for PrivacyJobSession. |
| PrivacyObjectSession | Schema file for PrivacyObjectSession. |
| PrivacyRTBFRequestHistory | Schema file for PrivacyRTBFRequestHistory. |
| PrivacySessionRecordFailure | Schema file for PrivacySessionRecordFailure. |
| ProcessDefinition | Defines process automation workflows in Salesforce, such as approval processes and custom flows. |
| ProcessFlowMigration | Schema file for ProcessFlowMigration. |
| ProcessInstance | Tracks running instances of approval processes, recording their status and progression. |
| ProcessInstanceNode | Schema file for ProcessInstanceNode. |
| ProcessInstanceStep | Represents individual steps within a process instance, tracking approvals and actions taken. |
| ProcessNode | Represents decision points and steps within a process definition. |
| Product2History | Schema file for Product2History. |
| Publisher | Schema file for Publisher. |
| QuickTextHistory | Schema file for QuickTextHistory. |
| QuickTextUsage | Schema file for QuickTextUsage. |
| RecordActionHistory | Schema file for RecordActionHistory. |
| RelatedListColumnDefinition | Schema file for RelatedListColumnDefinition. |
| RelatedListDefinition | Schema file for RelatedListDefinition. |
| RelationshipDomain | Schema file for RelationshipDomain. |
| RelationshipInfo | Schema file for RelationshipInfo. |
| Report | Stores metadata for reports, defining data queries and visualization settings. |
| ReportAnomalyEventStore | Schema file for ReportAnomalyEventStore. |
| ReportEvent | Schema file for ReportEvent. |
| SamlSsoConfig | Schema file for SamlSsoConfig. |
| SearchLayout | Schema file for SearchLayout. |
| SellerHistory | Schema file for SellerHistory. |
| ServiceContractHistory | Schema file for ServiceContractHistory. |
| ServiceSetupProvisioning | Schema file for ServiceSetupProvisioning. |
| SessionHijackingEventStore | Schema file for SessionHijackingEventStore. |
| SessionPermSetActivation | Schema file for SessionPermSetActivation. |
| SetupAuditTrail | Schema file for SetupAuditTrail. |
| Site | Stores information about Salesforce Sites, which allow public website hosting on the Salesforce platform. |
| SiteDetail | Schema file for SiteDetail. |
| SiteHistory | Tracks changes made to Site records, logging modifications over time. |
| SlaProcess | Schema file for SlaProcess. |
| SolutionHistory | Maintains a historical record of changes made to Solution records. |
| SolutionStatus | Defines different statuses for Solutions, such as Draft, Published, or Archived. |
| Stamp | Schema file for Stamp. |
| StampAssignment | Schema file for StampAssignment. |
| StandardInvocableActionType | Schema file for StandardInvocableActionType. |
| SwarmHistory | Schema file for SwarmHistory. |
| SwarmMemberHistory | Schema file for SwarmMemberHistory. |
| TabDefinition | Schema file for TabDefinition. |
| TableRelationships | Lists relationships in the specified table. |
| TaskPriority | Defines priority levels for tasks, such as High, Medium, or Low. |
| TaskStatus | Specifies the possible statuses for tasks, including Not Started, In Progress, or Completed. |
| TenantUsageEntitlement | Schema file for TenantUsageEntitlement. |
| Territory2AlignmentLog | Schema file for Territory2AlignmentLog. |
| Territory2ModelHistory | Schema file for Territory2ModelHistory. |
| ThirdPartyAccountLink | Schema file for ThirdPartyAccountLink. |
| Translation | Schema file for Translation. |
| UiFormulaCriterion | Schema file for UiFormulaCriterion. |
| UiFormulaRule | Schema file for UiFormulaRule. |
| UndecidedEventRelation | Tracks relationships between events and attendees who have not yet responded to invitations. |
| UriEvent | Schema file for UriEvent. |
| UserAppMenuItem | Schema file for UserAppMenuItem. |
| UserEntityAccess | Schema file for UserEntityAccess. |
| UserFieldAccess | Schema file for UserFieldAccess. |
| UserLicense | Manages user licenses, tracking available and assigned Salesforce licenses. |
| UserPermissionAccess | Schema file for UserPermissionAccess. |
| UserRecordAccess | Tracks record-level access permissions for users, defining which records they can view or edit. |
| UserSetupEntityAccess | Schema file for UserSetupEntityAccess. |
| UserSharedFeature | Schema file for UserSharedFeature. |
| VerificationHistory | Schema file for VerificationHistory. |
| VisualforceAccessMetrics | Schema file for VisualforceAccessMetrics. |
| WaveCompatibilityCheckItem | Schema file for WaveCompatibilityCheckItem. |
| WorkOrderHistory | Schema file for WorkOrderHistory. |
| WorkOrderLineItemHistory | Schema file for WorkOrderLineItemHistory. |
| WorkOrderLineItemStatus | Schema file for WorkOrderLineItemStatus. |
| WorkOrderStatus | Schema file for WorkOrderStatus. |
Stores relationships between events and attendees who have accepted invitations in Salesforce.
| Name | Type | References | Description |
| Id [KEY] | String | The unique ID of the AcceptedEventRelation record. | |
| RelationId | String | ID of the related user, contact, or lead who is associated with the event. | |
| RelationIdType | String | Specifies the type of the 'RelationId' polymorphic field to use in the statement. | |
| RelationIdExternalFieldName | String | Specifies the external field name of the 'RelationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| EventId | String |
Event.Id | ID of the event that this relation record is linked to. |
| RespondedDate | Datetime | The date and time when the invitee responded to the event invitation. | |
| Response | String | The type of response provided by the invitee, such as Accepted, Declined, or Tentative. | |
| CreatedById | String |
User.Id | ID of the user who created the AcceptedEventRelation record. |
| LastModifiedDate | Datetime | Timestamp indicating the last time the record was modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| IsDeleted | Bool | Indicates whether the record has been deleted (true) or is still active (false). | |
| Type | String | Specifies the type of relation to the event, such as User, Contact, or Lead. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp used for internal processing and synchronization. | |
| CreatedDate | Datetime | Timestamp indicating when the relation record was created. |
Maintains a historical record of changes made to Account fields that have field history tracking enabled.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the AccountHistory record. | |
| IsDeleted | Bool | Indicates whether this history record has been deleted. | |
| AccountId | String |
Account.Id | ID of the account associated with the field change. |
| CreatedById | String |
User.Id | ID of the user who made the change recorded in this history. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | API name of the field on the Account object that was changed. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | The previous value of the field before the change occurred. | |
| NewValue | String | The updated value of the field after the change was made. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the change was recorded. |
Schema file for AccountUserTerritory2View.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| AccountId | String |
Account.Id | ID of the Account associated with this record. |
| Territory2Id | String |
Territory2.Id | ID of the Territory2 associated with this record. |
| UserId | String |
User.Id | ID of the User associated with this record. |
| RoleInTerritory2 | String | Field containing RoleInTerritory2 information. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ActiveFeatureLicenseMetric.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| FeatureType | String | Type classification for Feature. | |
| AssignedUserCount | Int | Number of AssignedUser associated with this record. | |
| ActiveUserCount | Int | Number of ActiveUser associated with this record. | |
| TotalLicenseCount | Int | Number of TotalLicense associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for ActivePermSetLicenseMetric.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| PermissionSetLicenseId | String | ID of the PermissionSetLicense associated with this record. | |
| AssignedUserCount | Int | Number of AssignedUser associated with this record. | |
| ActiveUserCount | Int | Number of ActiveUser associated with this record. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| TotalLicenses | Int | Field containing TotalLicenses information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for ActiveProfileMetric.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| UserLicenseId | String |
UserLicense.Id | ID of the UserLicense associated with this record. |
| ProfileId | String |
Profile.Id | ID of the Profile associated with this record. |
| AssignedUserCount | Int | Number of AssignedUser associated with this record. | |
| ActiveUserCount | Int | Number of ActiveUser associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for AIApplication.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Status | String | Status of the record. | |
| Type | String | Type of account or classification. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AIApplicationConfig.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AIInsightAction.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AiRecordInsightId | String | ID of the AiRecordInsight associated with this record. | |
| Type | String | Type of account or classification. | |
| Confidence | Double | Field containing Confidence information. | |
| ActionName | String | Field containing ActionName information. | |
| ActionId | String | ID of the Action associated with this record. | |
| ActionIdType | String | Specifies the type of the 'ActionId' polymorphic field to use in the statement. | |
| ActionIdExternalFieldName | String | Specifies the external field name of the 'ActionId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AIInsightFeedback.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AiRecordInsightId | String | ID of the AiRecordInsight associated with this record. | |
| AiInsightFeedbackType | String | Type classification for AiInsightFeedback. | |
| AiFeedback | String | Field containing AiFeedback information. | |
| Rank | Int | Field containing Rank information. | |
| ValueId | String | ID of the Value associated with this record. | |
| ValueIdType | String | Specifies the type of the 'ValueId' polymorphic field to use in the statement. | |
| ValueIdExternalFieldName | String | Specifies the external field name of the 'ValueId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ActualValue | String | Field containing ActualValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AIInsightReason.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AiInsightValueId | String | ID of the AiInsightValue associated with this record. | |
| Intensity | Double | Field containing Intensity information. | |
| Contribution | Double | Field containing Contribution information. | |
| Variance | Double | Field containing Variance information. | |
| FieldName | String | Field containing FieldName information. | |
| Operator | String | Field containing Operator information. | |
| FieldValue | String | Field containing FieldValue information. | |
| FeatureValue | String | Field containing FeatureValue information. | |
| FeatureType | String | Type classification for Feature. | |
| RelatedInsightReasonId | String | ID of the RelatedInsightReason associated with this record. | |
| SortOrder | Int | Field containing SortOrder information. | |
| ReasonLabelKey | String | Field containing ReasonLabelKey information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AIInsightValue.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AiRecordInsightId | String | ID of the AiRecordInsight associated with this record. | |
| AiInsightActionId | String | ID of the AiInsightAction associated with this record. | |
| ValueType | String | Type classification for Value. | |
| SobjectType | String | Type classification for Sobject. | |
| Field | String | Field containing Field information. | |
| Value | String | Field containing Value information. | |
| FieldValueLowerBound | String | Field containing FieldValueLowerBound information. | |
| FieldValueUpperBound | String | Field containing FieldValueUpperBound information. | |
| Confidence | Double | Field containing Confidence information. | |
| SobjectLookupValueId | String | ID of the SobjectLookupValue associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsAssetAction.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AssetId | String | ID of the Asset associated with this record. | |
| EventType | String | Type classification for Event. | |
| ActionType | String | Type classification for Action. | |
| Version | Double | Field containing Version information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsButtonWidgetDef.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardWidgetId | String | ID of the AnalyticsDashboardWidget associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsContainerWidgetDef.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardWidgetId | String | ID of the AnalyticsDashboardWidget associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsDashboard.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| OwnerId | String |
User.Id | ID of the user who owns the record. |
| Description | String | Text description of the record. | |
| Style | String | Field containing Style information. | |
| TemplateSource | String | Field containing TemplateSource information. | |
| TemplateAssetSourceName | String | Field containing TemplateAssetSourceName information. | |
| Version | Double | Field containing Version information. | |
| AnalyticsWorkspaceId | String | ID of the AnalyticsWorkspace associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsDashboardLayout.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardId | String | ID of the AnalyticsDashboard associated with this record. | |
| LayoutName | String | Field containing LayoutName information. | |
| Label | String | Field containing Label information. | |
| ColumnCount | String | Number of Column associated with this record. | |
| RowHeight | String | Field containing RowHeight information. | |
| Version | Double | Field containing Version information. | |
| MaxWidth | String | Field containing MaxWidth information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsDashboardPage.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardLayoutId | String | ID of the AnalyticsDashboardLayout associated with this record. | |
| Label | String | Field containing Label information. | |
| PageName | String | Field containing PageName information. | |
| Index | Int | Field containing Index information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsDashboardViewDef.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardId | String | ID of the AnalyticsDashboard associated with this record. | |
| ViewName | String | Field containing ViewName information. | |
| DefaultPage | String | Field containing DefaultPage information. | |
| IsDefault | Bool | Indicates whether the record has the Default characteristic. | |
| Type | String | Type of account or classification. | |
| OwnerId | String |
User.Id | ID of the user who owns the record. |
| Version | Double | Field containing Version information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsDashboardViewSpec.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| DashboardViewId | String | ID of the DashboardView associated with this record. | |
| SourceId | String | ID of the Source associated with this record. | |
| SourceName | String | Field containing SourceName information. | |
| Type | String | Type of account or classification. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsDashboardWidget.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardId | String | ID of the AnalyticsDashboard associated with this record. | |
| Type | String | Type of account or classification. | |
| Label | String | Field containing Label information. | |
| WidgetName | String | Field containing WidgetName information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsDashPageWidget.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardPageId | String | ID of the AnalyticsDashboardPage associated with this record. | |
| AnalyticsDashboardWidgetId | String | ID of the AnalyticsDashboardWidget associated with this record. | |
| Colspan | String | Field containing Colspan information. | |
| Rowspan | String | Field containing Rowspan information. | |
| Row | String | Field containing Row information. | |
| Column | String | Field containing Column information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsFilterWidgetDef.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardWidgetId | String | ID of the AnalyticsDashboardWidget associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsMetricWidgetDef.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardWidgetId | String | ID of the AnalyticsDashboardWidget associated with this record. | |
| Version | Double | Field containing Version information. | |
| Source | String | Field containing Source information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsParamWidgetDef.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardWidgetId | String | ID of the AnalyticsDashboardWidget associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsTextWidgetDef.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardWidgetId | String | ID of the AnalyticsDashboardWidget associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsVizWidgetDef.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsDashboardWidgetId | String | ID of the AnalyticsDashboardWidget associated with this record. | |
| AnalyticsVisualizationId | String | ID of the AnalyticsVisualization associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsWorkspace.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Description | String | Text description of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AnalyticsWorkspaceAsset.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AnalyticsWorkspaceId | String | ID of the AnalyticsWorkspace associated with this record. | |
| AssetId | String | ID of the Asset associated with this record. | |
| AssetIdType | String | Specifies the type of the 'AssetId' polymorphic field to use in the statement. | |
| AssetIdExternalFieldName | String | Specifies the external field name of the 'AssetId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| AssetUsageType | String | Type classification for AssetUsage. | |
| AssetType | String | Type classification for Asset. | |
| ActivePromotionRequestId | String | ID of the ActivePromotionRequest associated with this record. | |
| HistoricalPromotionStatus | String | Status of the HistoricalPromotion. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ApexPageInfo.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| ApexPageId | String | ID of the ApexPage associated with this record. | |
| Name | String | Name of the record. | |
| NameSpacePrefix | String | The namespace prefix associated with this object. | |
| ApiVersion | Double | Field containing ApiVersion information. | |
| Description | String | Text description of the record. | |
| IsAvailableInTouch | Bool | Indicates whether the record has the AvailableInTouch characteristic. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| IsShowHeader | String | Indicates whether the record has the ShowHeader characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ApexTypeImplementor.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| ApexClassId | String |
ApexClass.Id | ID of the ApexClass associated with this record. |
| ClassName | String | Field containing ClassName information. | |
| ClassNamespacePrefix | String | Field containing ClassNamespacePrefix information. | |
| IsConcrete | Bool | Indicates whether the record has the Concrete characteristic. | |
| InterfaceApexClassId | String |
ApexClass.Id | ID of the InterfaceApexClass associated with this record. |
| InterfaceName | String | Field containing InterfaceName information. | |
| InterfaceNamespacePrefix | String | Field containing InterfaceNamespacePrefix information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ApiAnomalyEventStore.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| ApiAnomalyEventNumber | String | ApiAnomalyEvent identification number. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SourceIp | String | IP address from which the request originated. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| Operation | String | Field containing Operation information. | |
| QueriedEntities | String | Field containing QueriedEntities information. | |
| RequestIdentifier | String | Field containing RequestIdentifier information. | |
| RowsProcessed | Double | Field containing RowsProcessed information. | |
| Score | Double | Field containing Score information. | |
| SecurityEventData | String | Field containing SecurityEventData information. | |
| Summary | String | Field containing Summary information. | |
| Uri | String | Field containing Uri information. | |
| UserAgent | String | Field containing UserAgent information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ApiEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| LoginHistoryId | String |
LoginHistory.Id | ID of the related login history record. |
| RowsProcessed | Double | Field containing RowsProcessed information. | |
| RowsReturned | Double | Field containing RowsReturned information. | |
| Operation | String | Field containing Operation information. | |
| QueriedEntities | String | Field containing QueriedEntities information. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| AdditionalInfo | String | Field containing AdditionalInfo information. | |
| ApiType | String | Type classification for Api. | |
| ApiVersion | Double | Field containing ApiVersion information. | |
| Application | String | Field containing Application information. | |
| Client | String | Field containing Client information. | |
| ConnectedAppId | String | ID of the ConnectedApp associated with this record. | |
| ElapsedTime | Int | Field containing ElapsedTime information. | |
| Platform | String | Field containing Platform information. | |
| Query | String | SOQL query that was executed. | |
| Records | String | Field containing Records information. | |
| UserAgent | String | Field containing UserAgent information. | |
| RequestIdentifier | String | Field containing RequestIdentifier information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for AppDefinition.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Label | String | Field containing Label information. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| LogoUrl | String | Field containing LogoUrl information. | |
| Description | String | Text description of the record. | |
| UiType | String | Type classification for Ui. | |
| NavType | String | Type classification for Nav. | |
| UtilityBar | String | Field containing UtilityBar information. | |
| HeaderColor | String | Field containing HeaderColor information. | |
| IsOverrideOrgTheme | Bool | Indicates whether the record has the OverrideOrgTheme characteristic. | |
| IsSmallFormFactorSupported | Bool | Indicates whether the record has the SmallFormFactorSupported characteristic. | |
| IsMediumFormFactorSupported | Bool | Indicates whether the record has the MediumFormFactorSupported characteristic. | |
| IsLargeFormFactorSupported | Bool | Indicates whether the record has the LargeFormFactorSupported characteristic. | |
| IsNavPersonalizationDisabled | Bool | Indicates whether the record has the NavPersonalizationDisabled characteristic. | |
| IsNavAutoTempTabsDisabled | Bool | Indicates whether the record has the NavAutoTempTabsDisabled characteristic. | |
| IsNavTabPersistenceDisabled | Bool | Indicates whether the record has the NavTabPersistenceDisabled characteristic. | |
| IsOmniPinnedViewEnabled | Bool | Indicates whether the record has the OmniPinnedViewEnabled characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ApprovalSubmission.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| RelatedRecordId | String | ID of the record associated with this feed item. | |
| RelatedRecordIdType | String | Specifies the type of the 'RelatedRecordId' polymorphic field to use in the statement. | |
| RelatedRecordIdExternalFieldName | String | Specifies the external field name of the 'RelatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| FlowOrchestrationInstanceId | String | ID of the FlowOrchestrationInstance associated with this record. | |
| Status | String | Status of the record. | |
| SubmittedById | String |
User.Id | ID of the SubmittedBy associated with this record. |
| Comments | String | Field containing Comments information. | |
| RelatedRecordObjectName | String | Field containing RelatedRecordObjectName information. | |
| DoesSendApprovalEmail | Bool | Field containing DoesSendApprovalEmail information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ApprovalSubmissionDetail.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ApprovalSubmissionId | String | ID of the ApprovalSubmission associated with this record. | |
| ApprovalWorkItemId | String | ID of the ApprovalWorkItem associated with this record. | |
| ActionName | String | Field containing ActionName information. | |
| ActionContext | String | Field containing ActionContext information. | |
| ActionPerformedById | String |
User.Id | ID of the ActionPerformedBy associated with this record. |
| ActionPerformerRole | String | Field containing ActionPerformerRole information. | |
| Comments | String | Field containing Comments information. | |
| ActionChannelName | String | Field containing ActionChannelName information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ApprovalWorkItem.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ApprovalSubmissionId | String | ID of the ApprovalSubmission associated with this record. | |
| RelatedRecordId | String | ID of the record associated with this feed item. | |
| RelatedRecordIdType | String | Specifies the type of the 'RelatedRecordId' polymorphic field to use in the statement. | |
| RelatedRecordIdExternalFieldName | String | Specifies the external field name of the 'RelatedRecordId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| FlowOrchestrationWorkItemId | String | ID of the FlowOrchestrationWorkItem associated with this record. | |
| Status | String | Status of the record. | |
| AssignedToId | String | ID of the AssignedTo associated with this record. | |
| AssignedToIdType | String | Specifies the type of the 'AssignedToId' polymorphic field to use in the statement. | |
| AssignedToIdExternalFieldName | String | Specifies the external field name of the 'AssignedToId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ReviewedById | String |
User.Id | ID of the ReviewedBy associated with this record. |
| Comments | String | Field containing Comments information. | |
| RelatedRecordObjectName | String | Field containing RelatedRecordObjectName information. | |
| ApprovalConditionName | String | Field containing ApprovalConditionName information. | |
| ReviewedDate | Datetime | Date associated with Reviewed. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AppTabMember.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| AppDefinitionId | String | ID of the AppDefinition associated with this record. | |
| TabDefinitionId | String | ID of the TabDefinition associated with this record. | |
| SortOrder | Int | Field containing SortOrder information. | |
| WorkspaceDriverField | String | Field containing WorkspaceDriverField information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for AssetAction.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AssetActionNumber | String | AssetAction identification number. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AssetId | String |
Asset.Id | ID of the Asset associated with this record. |
| Type | String | Type of account or classification. | |
| CategoryEnum | String | Field containing CategoryEnum information. | |
| ActionDate | Datetime | Date associated with Action. | |
| QuantityChange | Double | Field containing QuantityChange information. | |
| MrrChange | Decimal | Field containing MrrChange information. | |
| Amount | Decimal | Estimated total sale amount. | |
| TotalInitialSaleAmount | Decimal | Field containing TotalInitialSaleAmount information. | |
| TotalRenewalsAmount | Decimal | Field containing TotalRenewalsAmount information. | |
| TotalUpsellsAmount | Decimal | Field containing TotalUpsellsAmount information. | |
| TotalDownsellsAmount | Decimal | Field containing TotalDownsellsAmount information. | |
| TotalCrossSellsAmount | Decimal | Field containing TotalCrossSellsAmount information. | |
| TotalCancellationsAmount | Decimal | Field containing TotalCancellationsAmount information. | |
| TotalTransfersAmount | Decimal | Field containing TotalTransfersAmount information. | |
| TotalTermsAndConditionsAmount | Decimal | Field containing TotalTermsAndConditionsAmount information. | |
| TotalOtherAmount | Decimal | Field containing TotalOtherAmount information. | |
| TotalQuantity | Double | Field containing TotalQuantity information. | |
| TotalMrr | Decimal | Field containing TotalMrr information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AssetActionSource.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AssetActionSourceNumber | String | AssetActionSource identification number. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AssetActionId | String |
AssetAction.Id | ID of the AssetAction associated with this record. |
| ReferenceEntityItemId | String | ID of the ReferenceEntityItem associated with this record. | |
| ReferenceEntityItemIdType | String | Specifies the type of the 'ReferenceEntityItemId' polymorphic field to use in the statement. | |
| ReferenceEntityItemIdExternalFieldName | String | Specifies the external field name of the 'ReferenceEntityItemId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ProductAmount | Decimal | Field containing ProductAmount information. | |
| AdjustmentAmount | Decimal | Field containing AdjustmentAmount information. | |
| EstimatedTax | Decimal | Field containing EstimatedTax information. | |
| ActualTax | Decimal | Field containing ActualTax information. | |
| StartDate | Datetime | Start date for the record or activity. | |
| EndDate | Datetime | End date for the record or activity. | |
| Quantity | Double | Quantity of the product. | |
| TransactionDate | Datetime | Date associated with Transaction. | |
| ExternalReference | String | Field containing ExternalReference information. | |
| ExternalReferenceDataSource | String | Field containing ExternalReferenceDataSource information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AssetHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AssetId | String |
Asset.Id | ID of the Asset associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AssetRelationshipHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AssetRelationshipId | String | ID of the AssetRelationship associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AssetStatePeriod.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AssetStatePeriodNumber | String | AssetStatePeriod identification number. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AssetId | String |
Asset.Id | ID of the Asset associated with this record. |
| StartDate | Datetime | Start date for the record or activity. | |
| EndDate | Datetime | End date for the record or activity. | |
| Quantity | Double | Quantity of the product. | |
| Amount | Decimal | Estimated total sale amount. | |
| Mrr | Decimal | Field containing Mrr information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Defines rules for automatically assigning leads and cases to the appropriate owners.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the assignment rule. | |
| Name | String | Name of the assignment rule, typically used for identification within the UI or automation. | |
| SobjectType | String | The type of Salesforce object (such as Case or Lead) that this rule applies to. | |
| Active | Bool | Indicates whether the assignment rule is currently active. | |
| CreatedById | String |
User.Id | ID of the user who created the assignment rule. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the assignment rule. |
| LastModifiedDate | Datetime | Date and time when the assignment rule was last updated. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp representing the last modification of the rule, used for record tracking. | |
| CreatedDate | Datetime | Date and time when the assignment rule was created. |
Schema file for AssociatedLocationHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AssociatedLocationId | String | ID of the AssociatedLocation associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Tracks the execution of asynchronous Apex jobs, including batch and scheduled jobs.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the asynchronous Apex job. | |
| CreatedById | String |
User.Id | ID of the user who initiated the job. |
| JobType | String | The type of asynchronous job, such as BatchApex, Future, Queueable, or ScheduledApex. | |
| ApexClassId | String |
ApexClass.Id | ID of the Apex class associated with the job. |
| Status | String | Current status of the job, such as Queued, Processing, Completed, or Failed. | |
| JobItemsProcessed | Int | The number of job items or batches that have been processed so far. | |
| TotalJobItems | Int | The total number of job items or batches that are scheduled to be processed. | |
| NumberOfErrors | Int | The number of job items that failed during processing. | |
| CompletedDate | Datetime | Date and time when the job finished executing. | |
| MethodName | String | The name of the Apex method that was executed as part of the job. | |
| ExtendedStatus | String | Detailed status message providing additional context about the job's execution. | |
| ParentJobId | String |
AsyncApexJob.Id | If the job was created by another Apex job, this is the ID of the parent job. |
| LastProcessed | String | The ID of the last record that was successfully processed and committed. | |
| LastProcessedOffset | Int | The offset position of the last record that was successfully processed and committed. | |
| CronTriggerId | String |
CronTrigger.Id | ID of the CronTrigger associated with this record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the job was created. |
Schema file for AuraDefinitionBundleInfo.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| AuraDefinitionBundleId | String | ID of the AuraDefinitionBundle associated with this record. | |
| ApiVersion | Double | Field containing ApiVersion information. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for AuraDefinitionInfo.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| AuraDefinitionBundleInfoId | String | ID of the AuraDefinitionBundleInfo associated with this record. | |
| AuraDefinitionId | String | ID of the AuraDefinition associated with this record. | |
| DefType | String | Type classification for Def. | |
| Format | String | Field containing Format information. | |
| Source | String | Field containing Source information. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for AuthConfig.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Url | String | Field containing Url information. | |
| AuthOptionsUsernamePassword | Bool | Field containing AuthOptionsUsernamePassword information. | |
| AuthOptionsSaml | Bool | Field containing AuthOptionsSaml information. | |
| AuthOptionsAuthProvider | Bool | Field containing AuthOptionsAuthProvider information. | |
| AuthOptionsCertificate | Bool | Field containing AuthOptionsCertificate information. | |
| IsActive | Bool | Indicates whether the record is active. | |
| Type | String | Type of account or classification. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AuthorizationFormConsentHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AuthorizationFormConsentId | String | ID of the AuthorizationFormConsent associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AuthorizationFormDataUseHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AuthorizationFormDataUseId | String | ID of the AuthorizationFormDataUse associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AuthorizationFormHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AuthorizationFormId | String | ID of the AuthorizationForm associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for AuthorizationFormTextHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| AuthorizationFormTextId | String | ID of the AuthorizationFormText associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for BackgroundOperation.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| SubmittedAt | Datetime | Field containing SubmittedAt information. | |
| Status | String | Status of the record. | |
| ExecutionGroup | String | Field containing ExecutionGroup information. | |
| SequenceGroup | String | Field containing SequenceGroup information. | |
| SequenceNumber | Int | Sequence identification number. | |
| GroupLeaderId | String | ID of the GroupLeader associated with this record. | |
| StartedAt | Datetime | Field containing StartedAt information. | |
| FinishedAt | Datetime | Field containing FinishedAt information. | |
| WorkerUri | String | Field containing WorkerUri information. | |
| Timeout | Int | Field containing Timeout information. | |
| ExpiresAt | Datetime | Field containing ExpiresAt information. | |
| NumFollowers | Int | Field containing NumFollowers information. | |
| ProcessAfter | Datetime | Field containing ProcessAfter information. | |
| ParentKey | String | Field containing ParentKey information. | |
| RetryLimit | Int | Field containing RetryLimit information. | |
| RetryCount | Int | Number of Retry associated with this record. | |
| RetryBackoff | Int | Field containing RetryBackoff information. | |
| Error | String | Field containing Error information. | |
| Type | String | Type of account or classification. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for BriefcaseDefinition.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| IsActive | Bool | Indicates whether the record is active. | |
| Description | String | Text description of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for BriefcaseRule.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| BriefcaseId | String | ID of the Briefcase associated with this record. | |
| TargetEntity | String | Field containing TargetEntity information. | |
| ParentRuleId | String | ID of the ParentRule associated with this record. | |
| FilterLogic | String | Field containing FilterLogic information. | |
| QueryScope | String | Field containing QueryScope information. | |
| RecordLimit | Int | Field containing RecordLimit information. | |
| OrderBy | String | Field containing OrderBy information. | |
| IsAscendingOrder | Bool | Indicates whether the record has the AscendingOrder characteristic. | |
| RelationshipField | String | Field containing RelationshipField information. | |
| RelationshipType | String | Type classification for Relationship. | |
| OptionsIsRelatedFilesRule | Bool | Field containing OptionsIsRelatedFilesRule information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for BriefcaseRuleFilter.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| BriefcaseRuleId | String | ID of the BriefcaseRule associated with this record. | |
| TargetEntityField | String | Field containing TargetEntityField information. | |
| FilterOperator | String | Field containing FilterOperator information. | |
| FilterValue | String | Field containing FilterValue information. | |
| FilterSeqNumber | Int | FilterSeq identification number. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for BulkApiResultEventStore.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| LoginHistoryId | String |
LoginHistory.Id | ID of the related login history record. |
| Query | String | SOQL query that was executed. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for Calendar.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Name | String | Name of the record. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| Type | String | Type of account or classification. | |
| IsActive | Bool | Indicates whether the record is active. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Tracks marketing campaigns, including outreach activities and associated leads, contacts, and opportunities.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the campaign record. | |
| IsDeleted | Bool | Indicates whether the campaign has been deleted (true) or is active (false). | |
| Name | String | Name of the campaign, used for identification and display. | |
| ParentId | String |
Campaign.Id | ID of the parent object in the hierarchy. |
| Type | String | Category of the campaign, such as email, webinar, or trade show. | |
| Status | String | Current status of the campaign, such as Planned, In Progress, or Completed. | |
| StartDate | Date | The start date of the campaign's active period. | |
| EndDate | Date | The end date of the campaign's active period. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| ExpectedRevenue | Decimal | The projected revenue expected to be generated from the campaign. | |
| BudgetedCost | Decimal | The planned budget allocated for the campaign. | |
| ActualCost | Decimal | The actual cost incurred for executing the campaign. | |
| ExpectedResponse | Double | The percentage of expected responses based on campaign reach. | |
| NumberSent | Double | The total number of messages or invitations sent as part of the campaign. | |
| IsActive | Bool | Indicates whether the campaign is currently active (true) or not (false). | |
| Description | String | A summary or notes describing the campaign's purpose and content. | |
| TenantId | String |
PardotTenant.Id | ID of the Tenant associated with this record. |
| NumberOfLeads | Int | The total number of leads associated with the campaign. | |
| NumberOfConvertedLeads | Int | The number of leads converted to contacts or opportunities through the campaign. | |
| NumberOfContacts | Int | The total number of contacts associated with the campaign. | |
| NumberOfResponses | Int | The total number of responses received from the campaign's audience. | |
| NumberOfOpportunities | Int | The number of sales opportunities generated from the campaign. | |
| NumberOfWonOpportunities | Int | The number of sales opportunities won as a result of the campaign. | |
| AmountAllOpportunities | Decimal | The total value of all opportunities related to the campaign. | |
| AmountWonOpportunities | Decimal | The total value of all won opportunities associated with the campaign. | |
| OwnerId | String |
User.Id | ID of the user or queue that owns the campaign. |
| CreatedById | String |
User.Id | ID of the user who created the campaign record. |
| LastModifiedDate | Datetime | Timestamp of the most recent update to the campaign. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the campaign record. |
| LastActivityDate | Date | The date of the most recent activity associated with the campaign. | |
| LastViewedDate | Datetime | The date the campaign was last viewed by a user. | |
| LastReferencedDate | Datetime | The date the campaign was last referenced in a related record or operation. | |
| CampaignMemberRecordTypeId | String |
RecordType.Id | The record type ID for campaign member records associated with this campaign. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-maintained timestamp for tracking the latest modification. | |
| CreatedDate | Datetime | Timestamp of when the campaign was initially created. |
Schema file for CampaignHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CampaignId | String |
Campaign.Id | ID of the Campaign associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Defines possible statuses for campaign members, such as Sent, Responded, or Attended.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the campaign member status record. | |
| IsDeleted | Bool | Indicates whether the campaign member status has been deleted (true) or is active (false). | |
| CampaignId | String |
Campaign.Id | ID of the campaign associated with this member status. |
| Label | String | Display label for the campaign member status, such as Sent or Responded. | |
| SortOrder | Int | Position of the status in the list, used for ordering in the user interface. | |
| IsDefault | Bool | Indicates whether this status is the default selection for new campaign members. | |
| HasResponded | Bool | Indicates whether this status reflects a response from the lead or contact. | |
| CreatedById | String |
User.Id | ID of the user who created the campaign member status record. |
| LastModifiedDate | Datetime | Date and time when the campaign member status was last updated. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the campaign member status record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-maintained timestamp for tracking the latest change to the record. | |
| CreatedDate | Datetime | Date and time when the campaign member status was created. |
Maintains a historical record of changes made to case fields that have history tracking enabled.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the case history record. | |
| IsDeleted | Bool | Indicates whether the case history record has been deleted (true) or not (false). | |
| CaseId | String |
Case.Id | ID of the case associated with this history record. |
| CreatedById | String |
User.Id | ID of the user who made the change recorded in the history. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Name of the field on the case that was changed. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Original value of the field before the change. | |
| NewValue | String | Updated value of the field after the change. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the change was made. |
Schema file for CaseHistory2.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CaseId | String |
Case.Id | ID of the Case associated with this record. |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Status | String | Status of the record. | |
| PreviousUpdate | Datetime | Date associated with PreviousUp. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Defines possible statuses for cases, such as New, In Progress, or Closed.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the case status record. | |
| MasterLabel | String | Display label for the case status, used in the Salesforce UI. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Defines the order in which this status appears in status picklists. | |
| IsDefault | Bool | Indicates whether this is the default status assigned to new cases. | |
| IsClosed | Bool | Indicates whether this status marks the case as closed (true) or not (false). | |
| CreatedById | String |
User.Id | ID of the user who created the case status record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the case status record. |
| LastModifiedDate | Datetime | Date and time when the case status record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Timestamp of the most recent system update to the case status record. | |
| CreatedDate | Datetime | Date and time when the case status record was created. |
Schema file for ChatRetirementRdyMetrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| ActiveChatDeployments | Int | Field containing ActiveChatDeployments information. | |
| EmbeddedServiceDeployments | Int | Field containing EmbeddedServiceDeployments information. | |
| ActiveVfDeployments | Int | Field containing ActiveVfDeployments information. | |
| ActiveChatButtons | Int | Field containing ActiveChatButtons information. | |
| ActiveChatInvitations | Int | Field containing ActiveChatInvitations information. | |
| ActiveSbrButtons | Int | Field containing ActiveSbrButtons information. | |
| ActiveQbrButtons | Int | Field containing ActiveQbrButtons information. | |
| Queues | Int | Field containing Queues information. | |
| Skills | Int | Field containing Skills information. | |
| SkillBasedRoutingRules | Int | Field containing SkillBasedRoutingRules information. | |
| CustomLabels | Int | Field containing CustomLabels information. | |
| CustomWebComponents | Int | Field containing CustomWebComponents information. | |
| ChatBots | Int | Field containing ChatBots information. | |
| IpBlockingRules | Int | Field containing IpBlockingRules information. | |
| ChatApexClasses | Int | Field containing ChatApexClasses information. | |
| ChatApexClassList | String | Field containing ChatApexClassList information. | |
| ChatObjectsInApexList | String | Field containing ChatObjectsInApexList information. | |
| ChatFlowCount | Int | Number of ChatFlow associated with this record. | |
| ChatFlowList | String | Field containing ChatFlowList information. | |
| ChatObjectsInFlowList | String | Field containing ChatObjectsInFlowList information. | |
| PrimaryChatReportTypes | Int | Field containing PrimaryChatReportTypes information. | |
| PrimaryChatReportTypeList | String | Field containing PrimaryChatReportTypeList information. | |
| PrimaryChatReportList | String | Field containing PrimaryChatReportList information. | |
| SecondaryChatReportTypes | Int | Field containing SecondaryChatReportTypes information. | |
| SecondaryChatReportTypeList | String | Field containing SecondaryChatReportTypeList information. | |
| SecondaryChatReportList | String | Field containing SecondaryChatReportList information. | |
| UniqueChatObjectsInReport | String | Field containing UniqueChatObjectsInReport information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Tracks Chatter engagement, such as posts, comments, and likes, across Salesforce records.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the Chatter activity record. | |
| ParentId | String |
User.Id | ID of the user or entity associated with this Chatter activity. |
| PostCount | Int | Total number of posts made by the user or entity. | |
| CommentCount | Int | Total number of comments made by the user or entity. | |
| CommentReceivedCount | Int | Total number of comments received on the user's or entity's posts. | |
| LikeReceivedCount | Int | Total number of likes received on the user's or entity's posts or comments. | |
| InfluenceRawRank | Int | Numerical ranking that represents the influence level based on Chatter engagement. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the last update to this record. |
Schema file for ColorDefinition.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| TabDefinitionId | String | ID of the TabDefinition associated with this record. | |
| Color | String | Field containing Color information. | |
| Theme | String | Field containing Theme information. | |
| Context | String | Field containing Context information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for CommSubscriptionChannelTypeHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CommSubscriptionChannelTypeId | String | ID of the CommSubscriptionChannelType associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CommSubscriptionConsentHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CommSubscriptionConsentId | String | ID of the CommSubscriptionConsent associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CommSubscriptionHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CommSubscriptionId | String | ID of the CommSubscription associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CommSubscriptionTimingHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CommSubscriptionTimingId | String | ID of the CommSubscriptionTiming associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stores configuration details for Salesforce communities, including branding, themes, and settings.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the community. | |
| CreatedById | String |
User.Id | ID of the user who created the community. |
| LastModifiedDate | Datetime | Date and time when the community record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the community record. |
| Name | String | Name of the community. | |
| Description | String | Text description of the community's purpose or function. | |
| IsActive | Bool | Indicates whether the community is currently active (true) or inactive (false). | |
| IsPublished | Bool | Indicates whether the record has the Published characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Timestamp of the most recent system update for the community record. | |
| CreatedDate | Datetime | Date and time when the community was created. |
Schema file for ConnectedApplication.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| OptionsAllowAdminApprovedUsersOnly | Bool | Field containing OptionsAllowAdminApprovedUsersOnly information. | |
| OptionsRefreshTokenValidityMetric | Bool | Field containing OptionsRefreshTokenValidityMetric information. | |
| OptionsHasSessionLevelPolicy | Bool | Field containing OptionsHasSessionLevelPolicy information. | |
| OptionsIsInternal | Bool | Field containing OptionsIsInternal information. | |
| OptionsFullContentPushNotifications | Bool | Field containing OptionsFullContentPushNotifications information. | |
| OptionsCodeCredentialGuestEnabled | Bool | Field containing OptionsCodeCredentialGuestEnabled information. | |
| OptionsTokenExchangeManageBitEnabled | Bool | Field containing OptionsTokenExchangeManageBitEnabled information. | |
| MobileSessionTimeout | String | Field containing MobileSessionTimeout information. | |
| PinLength | String | Field containing PinLength information. | |
| StartUrl | String | Field containing StartUrl information. | |
| MobileStartUrl | String | Field containing MobileStartUrl information. | |
| RefreshTokenValidityPeriod | Int | Field containing RefreshTokenValidityPeriod information. | |
| UvidTimeout | String | Field containing UvidTimeout information. | |
| NamedUserUvidTimeout | String | Field containing NamedUserUvidTimeout information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ConsumptionRateHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ConsumptionRateId | String | ID of the ConsumptionRate associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ConsumptionScheduleHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ConsumptionScheduleId | String | ID of the ConsumptionSchedule associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Maintains a historical record of changes made to Contact fields that have history tracking enabled.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the contact history record. | |
| IsDeleted | Bool | Indicates whether the history record has been deleted (true) or not (false). | |
| ContactId | String |
Contact.Id | ID of the contact record associated with this history entry. |
| CreatedById | String |
User.Id | ID of the user who made the change that generated this history record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | API name of the field that was changed on the contact record. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Previous value of the field before the change occurred. | |
| NewValue | String | New value of the field after the change was made. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the change was made. |
Schema file for ContactPointAddressHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ContactPointAddressId | String | ID of the ContactPointAddress associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ContactPointConsentHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ContactPointConsentId | String | ID of the ContactPointConsent associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ContactPointEmailHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ContactPointEmailId | String | ID of the ContactPointEmail associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ContactPointPhoneHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ContactPointPhoneId | String | ID of the ContactPointPhone associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ContactPointTypeConsentHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ContactPointTypeConsentId | String | ID of the ContactPointTypeConsent associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Maintains a historical record of changes made to Content Documents.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the content document history record. | |
| IsDeleted | Bool | Indicates whether the history record has been deleted (true) or not (false). | |
| ContentDocumentId | String | ID of the content document associated with this history entry. | |
| CreatedById | String |
User.Id | ID of the user who created the history record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Name of the field on the content document that was changed. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Previous value of the field before the change occurred. | |
| NewValue | String | New value of the field after the change was made. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the history record was created. |
Schema file for ContentFolderItem.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| IsFolder | Bool | Indicates whether the record has the Folder characteristic. | |
| ParentContentFolderId | String | ID of the ParentContentFolder associated with this record. | |
| Title | String | Title of the contact or person, for example CEO or Vice President. | |
| FileType | String | Type classification for File. | |
| ContentSize | Int | Field containing ContentSize information. | |
| FileExtension | String | Field containing FileExtension information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ContentFolderLink.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| ParentEntityId | String | ID of the ParentEntity associated with this record. | |
| ContentFolderId | String | ID of the ContentFolder associated with this record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| EnableFolderStatus | String | Status of the EnableFolder. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ContentTaxonomyTermRelationshipType.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ContentTaxonomyTrmRelaCatg | String | Field containing ContentTaxonomyTrmRelaCatg information. | |
| Description | String | Text description of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stores the history of changes made to Content Versions, tracking modifications and updates.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the content version history record. | |
| IsDeleted | Bool | Indicates whether the history record has been deleted (true) or not (false). | |
| ContentVersionId | String | ID of the content version associated with this history entry. | |
| CreatedById | String |
User.Id | ID of the user who created this history record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | The name of the field that was changed. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | The previous value of the changed field. | |
| NewValue | String | The new value of the changed field. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the history record was created. |
Schema file for ContextParamMap.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ContextEntityId | String | ID of the ContextEntity associated with this record. | |
| MapKey | String | Field containing MapKey information. | |
| MapValue | String | Field containing MapValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Maintains a historical record of changes made to Contract fields that have history tracking enabled.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the contract history record. | |
| IsDeleted | Bool | Indicates whether the history record has been deleted (true) or not (false). | |
| ContractId | String |
Contract.Id | ID of the contract associated with this history record. |
| CreatedById | String |
User.Id | ID of the user who made the change recorded in this history entry. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | API name of the field that was changed. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Previous value of the field before the change. | |
| NewValue | String | Updated value of the field after the change. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the change was made. |
Schema file for ContractLineItemHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ContractLineItemId | String | ID of the ContractLineItem associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Defines possible statuses for contracts, such as Draft, Active, or Expired.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the contract status. | |
| MasterLabel | String | Display label for the contract status. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Order in which the status appears in picklists or lists. | |
| IsDefault | Bool | Indicates whether this status is the default selection (true) or not (false). | |
| StatusCode | String | API name of the contract status used for integrations or logic. | |
| CreatedById | String |
User.Id | ID of the user who created this contract status record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified this contract status record. |
| LastModifiedDate | Datetime | Date and time when the contract status was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp for the last modification of the record. | |
| CreatedDate | Datetime | Date and time when the contract status was created. |
Schema file for Conversation.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Name | String | Name of the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ConversationIdentifier | String | Field containing ConversationIdentifier information. | |
| StartTime | Datetime | Field containing StartTime information. | |
| EndTime | Datetime | Field containing EndTime information. | |
| ConversationChannelId | String | ID of the ConversationChannel associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ConversationParticipant.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Name | String | Name of the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ConversationId | String |
Conversation.Id | ID of the Conversation associated with this record. |
| AppType | String | Type classification for App. | |
| JoinedTime | Datetime | Field containing JoinedTime information. | |
| ParticipantEntityId | String | ID of the ParticipantEntity associated with this record. | |
| ParticipantEntityIdType | String | Specifies the type of the 'ParticipantEntityId' polymorphic field to use in the statement. | |
| ParticipantEntityIdExternalFieldName | String | Specifies the external field name of the 'ParticipantEntityId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ParticipantKey | String | Field containing ParticipantKey information. | |
| ParticipantRole | String | Field containing ParticipantRole information. | |
| ParticipantContext | String | Field containing ParticipantContext information. | |
| ParticipantDisplayName | String | Field containing ParticipantDisplayName information. | |
| LeftTime | Datetime | Field containing LeftTime information. | |
| LastActiveTime | Datetime | Field containing LastActiveTime information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ConvMessageSendRequest.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| MessageDefinition | String | Field containing MessageDefinition information. | |
| RequestType | String | Type classification for Request. | |
| RequestStatus | String | Status of the Request. | |
| CompletedDate | Datetime | Date when the record was completed. | |
| ShouldEnforceChannelConsent | Bool | Field containing ShouldEnforceChannelConsent information. | |
| AllowExistingSessionStatus | String | Status of the AllowExistingSession. | |
| PendingMessageCount | Int | Number of PendingMessage associated with this record. | |
| PendingMessageIdentifiers | String | Field containing PendingMessageIdentifiers information. | |
| InProgressMessageCount | Int | Number of InProgressMessage associated with this record. | |
| InProgressMessageIdentifiers | String | Field containing InProgressMessageIdentifiers information. | |
| SuccessMessageCount | Int | Number of SuccessMessage associated with this record. | |
| SuccessMessageIdentifiers | String | Field containing SuccessMessageIdentifiers information. | |
| FailedMessageCount | Int | Number of FailedMessage associated with this record. | |
| FailedMessageIdentifiers | String | Field containing FailedMessageIdentifiers information. | |
| FailedMessageErrorReasons | String | Field containing FailedMessageErrorReasons information. | |
| RequestConsentType | String | Type classification for RequestConsent. | |
| CommSubscriptionId | String | ID of the CommSubscription associated with this record. | |
| SessionLongevityPreference | String | Field containing SessionLongevityPreference information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CredentialStuffingEventStore.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CredentialStuffingEventNumber | String | CredentialStuffingEvent identification number. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SourceIp | String | IP address from which the request originated. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| AcceptLanguage | String | Field containing AcceptLanguage information. | |
| LoginType | String | Type classification for Login. | |
| LoginUrl | String | Field containing LoginUrl information. | |
| Score | Double | Field containing Score information. | |
| Summary | String | Field containing Summary information. | |
| UserAgent | String | Field containing UserAgent information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CreditMemoHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreditMemoId | String |
CreditMemo.Id | ID of the CreditMemo associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CreditMemoInvApplicationHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreditMemoInvApplicationId | String | ID of the CreditMemoInvApplication associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CreditMemoLineHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreditMemoLineId | String | ID of the CreditMemoLine associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stores details of scheduled jobs in Salesforce, tracking job execution and scheduling information.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the scheduled job detail record. | |
| Name | String | Name assigned to the scheduled job. | |
| JobType | String | Type of scheduled job, such as Apex class or batch job. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Defines time-based triggers for scheduled Apex jobs, controlling when they execute.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the scheduled job trigger. | |
| CronJobDetailId | String | ID that links this trigger to its associated scheduled job. | |
| NextFireTime | Datetime | The next scheduled execution time of the job. | |
| PreviousFireTime | Datetime | The last time the job was executed. | |
| State | String | Current state of the job, such as WAITING or ACQUIRED. | |
| StartTime | Datetime | Date and time when the job is scheduled to start. | |
| EndTime | Datetime | Date and time when the job is scheduled to end. | |
| CronExpression | String | Cron expression that defines the job schedule. | |
| TimeZoneSidKey | String | Time zone used to evaluate the cron expression. | |
| OwnerId | String |
User.Id | ID of the user who owns the scheduled job. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the job. |
| CreatedById | String |
User.Id | ID of the user who created the job. |
| TimesTriggered | Int | Total number of times the job has been triggered. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the job was created. |
Schema file for CustomHttpHeader.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ParentId | String | ID of the parent object in the hierarchy. | |
| ParentIdType | String | Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| HeaderFieldName | String | Field containing HeaderFieldName information. | |
| HeaderFieldValue | String | Field containing HeaderFieldValue information. | |
| IsActive | Bool | Indicates whether the record is active. | |
| Description | String | Text description of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CustomPermission.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| IsProtected | Bool | Indicates whether the component is protected or not. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Description | String | Text description of the record. | |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| IsLicensed | Bool | Indicates whether the record has the Licensed characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for CustomPermissionDependency.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| CustomPermissionId | String | ID of the CustomPermission associated with this record. | |
| RequiredCustomPermissionId | String | ID of the RequiredCustomPermission associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stores metadata for Salesforce dashboards, which provide visual reports and key performance metrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the dashboard. | |
| IsDeleted | Bool | Indicates whether the dashboard has been deleted (true) or not (false). | |
| OwnerId | String |
User.Id | ID of the user who owns the record. |
| FolderId | String | ID of the folder where the dashboard is stored. | |
| FolderName | String | Field containing FolderName information. | |
| Title | String | Display name of the dashboard. | |
| DeveloperName | String | Unique API name of the dashboard used by developers. | |
| NamespacePrefix | String | Namespace prefix associated with the dashboard, if applicable. | |
| Description | String | Optional description providing context or details about the dashboard. | |
| LeftSize | String | Width setting for the left column of the dashboard layout. | |
| MiddleSize | String | Width setting for the middle column of the dashboard layout. | |
| RightSize | String | Width setting for the right column of the dashboard layout. | |
| CreatedById | String |
User.Id | ID of the user who created the dashboard. |
| LastModifiedDate | Datetime | Date and time when the dashboard was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the dashboard. |
| RunningUserId | String |
User.Id | ID of the user under whose context the dashboard runs. |
| TitleColor | Int | Hex value representing the title color of the dashboard. | |
| TitleSize | Int | Font size used for the dashboard title. | |
| TextColor | Int | Hex value representing the text color of the dashboard. | |
| BackgroundStart | Int | Hex value representing the starting background color gradient. | |
| BackgroundEnd | Int | Hex value representing the ending background color gradient. | |
| BackgroundDirection | String | Direction of the background gradient fade such as 'diagonal' or 'vertical'. | |
| Type | String | Specifies the type of user context in which the dashboard runs. | |
| LastViewedDate | Datetime | The most recent date and time the dashboard was viewed. | |
| LastReferencedDate | Datetime | The most recent date and time the dashboard was referenced in the system. | |
| DashboardResultRefreshedDate | String | Date associated with DashboardResultRefreshed. | |
| DashboardResultRunningUser | String | Field containing DashboardResultRunningUser information. | |
| ColorPalette | String | Field containing ColorPalette information. | |
| ChartTheme | String | Field containing ChartTheme information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Timestamp used by the system to track the last modification. | |
| CreatedDate | Datetime | Date and time when the dashboard was created. |
Represents individual components within a dashboard, such as charts, tables, or metrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the dashboard component. | |
| Name | String | Name of the dashboard component as displayed to users. | |
| DashboardId | String |
Dashboard.Id | ID of the dashboard this component belongs to. |
| CustomReportId | String |
Report.Id | ID of the CustomReport associated with this record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for DataAssessmentFieldMetric.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| DataAssessmentMetricId | String | ID of the DataAssessmentMetric associated with this record. | |
| FieldName | String | Field containing FieldName information. | |
| NumMatchedInSync | Int | Field containing NumMatchedInSync information. | |
| NumMatchedDifferent | Int | Field containing NumMatchedDifferent information. | |
| NumMatchedBlanks | Int | Field containing NumMatchedBlanks information. | |
| NumUnmatchedBlanks | Int | Field containing NumUnmatchedBlanks information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for DataAssessmentMetric.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| NumTotal | Int | Field containing NumTotal information. | |
| NumProcessed | Int | Field containing NumProcessed information. | |
| NumMatched | Int | Field containing NumMatched information. | |
| NumMatchedDifferent | Int | Field containing NumMatchedDifferent information. | |
| NumUnmatched | Int | Field containing NumUnmatched information. | |
| NumDuplicates | Int | Field containing NumDuplicates information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for DataAssessmentValueMetric.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| DataAssessmentFieldMetricId | String | ID of the DataAssessmentFieldMetric associated with this record. | |
| FieldValue | String | Field containing FieldValue information. | |
| ValueCount | Int | Number of Value associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for DatacloudAddress.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| ExternalId | String | External ID from another system. | |
| AddressLine1 | String | Field containing AddressLine1 information. | |
| AddressLine2 | String | Field containing AddressLine2 information. | |
| City | String | City portion of the address. | |
| State | String | State or province portion of the address. | |
| Country | String | Country portion of the address. | |
| PostalCode | String | Postal code portion of the address. | |
| Latitude | String | Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | String | Used with Latitude to specify the precise geolocation of an address. | |
| GeoAccuracyCode | String | Field containing GeoAccuracyCode information. | |
| GeoAccuracyNum | String | Field containing GeoAccuracyNum information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for DatacloudCompany.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| ExternalId | String | External ID from another system. | |
| CompanyId | String | ID of the Company associated with this record. | |
| Name | String | Name of the record. | |
| Description | String | Text description of the record. | |
| IsInactive | Bool | Indicates whether the record has the Inactive characteristic. | |
| Phone | String | Phone number for the contact or account. | |
| Fax | String | Fax number for the contact or account. | |
| Street | String | Street address. | |
| City | String | City portion of the address. | |
| State | String | State or province portion of the address. | |
| StateCode | String | Field containing StateCode information. | |
| Country | String | Country portion of the address. | |
| CountryCode | String | Field containing CountryCode information. | |
| Zip | String | Field containing Zip information. | |
| Site | String | The billing address city for this account. | |
| Industry | String | Industry that the account belongs to. | |
| NumberOfEmployees | Int | Number of employees working at the company represented by this account. | |
| AnnualRevenue | Decimal | Estimated annual revenue of the account. | |
| DunsNumber | String | The Data Universal Number System (D-U-N-S) number is a nine-digit number assigned to companies by Dun & Bradstreet. | |
| NaicsCode | String | Field containing NaicsCode information. | |
| NaicsDesc | String | Field containing NaicsDesc information. | |
| Sic | String | Standard Industrial Classification code of the company's main business categorization. | |
| SicDesc | String | A brief description of the company's business, based on the SIC code. | |
| Ownership | String | Ownership type for the account. | |
| IsOwned | Bool | Indicates whether the record has the Owned characteristic. | |
| TickerSymbol | String | The stock market symbol for the account. | |
| TradeStyle | String | Field containing TradeStyle information. | |
| Website | String | Website URL for this account. | |
| YearStarted | String | Field containing YearStarted information. | |
| ActiveContacts | Int | Field containing ActiveContacts information. | |
| UpdatedDate | Datetime | Date associated with Updated. | |
| FortuneRank | Int | Field containing FortuneRank information. | |
| IncludedInSnP500 | String | Field containing IncludedInSnP500 information. | |
| PremisesMeasure | Int | Field containing PremisesMeasure information. | |
| PremisesMeasureReliability | String | Field containing PremisesMeasureReliability information. | |
| PremisesMeasureUnit | String | Field containing PremisesMeasureUnit information. | |
| EmployeeQuantityGrowthRate | Double | Field containing EmployeeQuantityGrowthRate information. | |
| SalesTurnoverGrowthRate | Double | Field containing SalesTurnoverGrowthRate information. | |
| PriorYearEmployees | Int | Field containing PriorYearEmployees information. | |
| PriorYearRevenue | Decimal | Field containing PriorYearRevenue information. | |
| IsInCrm | Bool | Indicates whether the record has the InCrm characteristic. | |
| FullAddress | String | Field containing FullAddress information. | |
| SicCodeDesc | String | Field containing SicCodeDesc information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for DatacloudContact.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| ExternalId | String | External ID from another system. | |
| CompanyId | String | ID of the Company associated with this record. | |
| ContactId | String | ID of the Contact associated with this record. | |
| CompanyName | String | Field containing CompanyName information. | |
| Title | String | Title of the contact or person, for example CEO or Vice President. | |
| IsInactive | Bool | Indicates whether the record has the Inactive characteristic. | |
| FirstName | String | First name of the contact or person account. | |
| LastName | String | Last name of the contact or person account. Required for person accounts. | |
| Phone | String | Phone number for the contact or account. | |
| String | Email address for the contact or person account. | ||
| Street | String | Street address. | |
| City | String | City portion of the address. | |
| State | String | State or province portion of the address. | |
| Country | String | Country portion of the address. | |
| Zip | String | Field containing Zip information. | |
| Department | String | The contact's department. | |
| Level | String | Field containing Level information. | |
| IsOwned | Bool | Indicates whether the record has the Owned characteristic. | |
| UpdatedDate | Datetime | Date associated with Updated. | |
| IsInCrm | Bool | Indicates whether the record has the InCrm characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for DatacloudDandBCompany.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| ExternalId | String | External ID from another system. | |
| Name | String | Name of the record. | |
| DunsNumber | String | The Data Universal Number System (D-U-N-S) number is a nine-digit number assigned to companies by Dun & Bradstreet. | |
| CompanyId | String | ID of the Company associated with this record. | |
| Street | String | Street address. | |
| City | String | City portion of the address. | |
| State | String | State or province portion of the address. | |
| StateCode | String | Field containing StateCode information. | |
| Country | String | Country portion of the address. | |
| CountryCode | String | Field containing CountryCode information. | |
| Zip | String | Field containing Zip information. | |
| Phone | String | Phone number for the contact or account. | |
| Fax | String | Fax number for the contact or account. | |
| CountryAccessCode | String | Field containing CountryAccessCode information. | |
| PublicIndicator | String | Field containing PublicIndicator information. | |
| StockSymbol | String | Field containing StockSymbol information. | |
| StockExchange | String | Field containing StockExchange information. | |
| SalesVolume | Double | Field containing SalesVolume information. | |
| URL | String | Field containing URL information. | |
| OutOfBusiness | String | Field containing OutOfBusiness information. | |
| EmployeesTotal | Double | Field containing EmployeesTotal information. | |
| FipsMsaCode | String | Field containing FipsMsaCode information. | |
| FipsMsaDesc | String | Field containing FipsMsaDesc information. | |
| TradeStyle1 | String | Field containing TradeStyle1 information. | |
| YearStarted | String | Field containing YearStarted information. | |
| MailingStreet | String | Street address for Mailing purposes. | |
| MailingCity | String | City for Mailing address. | |
| MailingState | String | State or province for Mailing address. | |
| MailingStateCode | String | Field containing MailingStateCode information. | |
| MailingCountry | String | Country for Mailing address. | |
| MailingCountryCode | String | Field containing MailingCountryCode information. | |
| MailingZip | String | Field containing MailingZip information. | |
| Latitude | String | Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | String | Used with Latitude to specify the precise geolocation of an address. | |
| PrimarySic | String | Field containing PrimarySic information. | |
| PrimarySicDesc | String | Field containing PrimarySicDesc information. | |
| SecondSic | String | Field containing SecondSic information. | |
| SecondSicDesc | String | Field containing SecondSicDesc information. | |
| ThirdSic | String | Field containing ThirdSic information. | |
| ThirdSicDesc | String | Field containing ThirdSicDesc information. | |
| FourthSic | String | Field containing FourthSic information. | |
| FourthSicDesc | String | Field containing FourthSicDesc information. | |
| FifthSic | String | Field containing FifthSic information. | |
| FifthSicDesc | String | Field containing FifthSicDesc information. | |
| SixthSic | String | Field containing SixthSic information. | |
| SixthSicDesc | String | Field containing SixthSicDesc information. | |
| PrimaryNaics | String | Field containing PrimaryNaics information. | |
| PrimaryNaicsDesc | String | Field containing PrimaryNaicsDesc information. | |
| SecondNaics | String | Field containing SecondNaics information. | |
| SecondNaicsDesc | String | Field containing SecondNaicsDesc information. | |
| ThirdNaics | String | Field containing ThirdNaics information. | |
| ThirdNaicsDesc | String | Field containing ThirdNaicsDesc information. | |
| FourthNaics | String | Field containing FourthNaics information. | |
| FourthNaicsDesc | String | Field containing FourthNaicsDesc information. | |
| FifthNaics | String | Field containing FifthNaics information. | |
| FifthNaicsDesc | String | Field containing FifthNaicsDesc information. | |
| SixthNaics | String | Field containing SixthNaics information. | |
| SixthNaicsDesc | String | Field containing SixthNaicsDesc information. | |
| OwnOrRent | String | Field containing OwnOrRent information. | |
| EmployeesHere | Double | Field containing EmployeesHere information. | |
| EmployeesHereReliability | String | Field containing EmployeesHereReliability information. | |
| SalesVolumeReliability | String | Field containing SalesVolumeReliability information. | |
| CurrencyCode | String | Field containing CurrencyCode information. | |
| LegalStatus | String | Status of the Legal. | |
| GlobalUltimateTotalEmployees | Double | Field containing GlobalUltimateTotalEmployees information. | |
| EmployeesTotalReliability | String | Field containing EmployeesTotalReliability information. | |
| MinorityOwned | String | Field containing MinorityOwned information. | |
| WomenOwned | String | Field containing WomenOwned information. | |
| SmallBusiness | String | Field containing SmallBusiness information. | |
| MarketingSegmentationCluster | String | Field containing MarketingSegmentationCluster information. | |
| ImportExportAgent | String | Field containing ImportExportAgent information. | |
| Subsidiary | String | Field containing Subsidiary information. | |
| TradeStyle2 | String | Field containing TradeStyle2 information. | |
| TradeStyle3 | String | Field containing TradeStyle3 information. | |
| TradeStyle4 | String | Field containing TradeStyle4 information. | |
| TradeStyle5 | String | Field containing TradeStyle5 information. | |
| NationalId | String | ID of the National associated with this record. | |
| NationalIdType | String | Type classification for NationalId. | |
| UsTaxId | String | ID of the UsTax associated with this record. | |
| GeoCodeAccuracy | String | Accuracy level of the geocode for the address. | |
| FamilyMembers | Int | Field containing FamilyMembers information. | |
| MarketingPreScreen | String | Field containing MarketingPreScreen information. | |
| GlobalUltimateDunsNumber | String | GlobalUltimateDuns identification number. | |
| GlobalUltimateBusinessName | String | Field containing GlobalUltimateBusinessName information. | |
| ParentOrHqDunsNumber | String | ParentOrHqDuns identification number. | |
| ParentOrHqBusinessName | String | Field containing ParentOrHqBusinessName information. | |
| DomesticUltimateDunsNumber | String | DomesticUltimateDuns identification number. | |
| DomesticUltimateBusinessName | String | Field containing DomesticUltimateBusinessName information. | |
| LocationStatus | String | Status of the Location. | |
| CompanyCurrencyIsoCode | String | Field containing CompanyCurrencyIsoCode information. | |
| Description | String | Text description of the record. | |
| IsOwned | Bool | Indicates whether the record has the Owned characteristic. | |
| IsParent | Bool | Indicates whether the record has the Parent characteristic. | |
| FortuneRank | Int | Field containing FortuneRank information. | |
| IncludedInSnP500 | String | Field containing IncludedInSnP500 information. | |
| PremisesMeasure | Int | Field containing PremisesMeasure information. | |
| PremisesMeasureReliability | String | Field containing PremisesMeasureReliability information. | |
| PremisesMeasureUnit | String | Field containing PremisesMeasureUnit information. | |
| EmployeeQuantityGrowthRate | Double | Field containing EmployeeQuantityGrowthRate information. | |
| SalesTurnoverGrowthRate | Double | Field containing SalesTurnoverGrowthRate information. | |
| PrimarySic8 | String | Field containing PrimarySic8 information. | |
| PrimarySic8Desc | String | Field containing PrimarySic8Desc information. | |
| SecondSic8 | String | Field containing SecondSic8 information. | |
| SecondSic8Desc | String | Field containing SecondSic8Desc information. | |
| ThirdSic8 | String | Field containing ThirdSic8 information. | |
| ThirdSic8Desc | String | Field containing ThirdSic8Desc information. | |
| FourthSic8 | String | Field containing FourthSic8 information. | |
| FourthSic8Desc | String | Field containing FourthSic8Desc information. | |
| FifthSic8 | String | Field containing FifthSic8 information. | |
| FifthSic8Desc | String | Field containing FifthSic8Desc information. | |
| SixthSic8 | String | Field containing SixthSic8 information. | |
| SixthSic8Desc | String | Field containing SixthSic8Desc information. | |
| PriorYearEmployees | Int | Field containing PriorYearEmployees information. | |
| PriorYearRevenue | Double | Field containing PriorYearRevenue information. | |
| Industry | String | Industry that the account belongs to. | |
| Revenue | Double | Field containing Revenue information. | |
| IsInCrm | Bool | Indicates whether the record has the InCrm characteristic. | |
| FullAddress | String | Field containing FullAddress information. | |
| SicCodeDesc | String | Field containing SicCodeDesc information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for DatacloudOwnedEntity.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| DataDotComKey | String | Field containing DataDotComKey information. | |
| DatacloudEntityType | String | Type classification for DatacloudEntity. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| PurchaseUsageId | String | ID of the PurchaseUsage associated with this record. | |
| PurchaseType | String | Type classification for Purchase. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for DatacloudPurchaseUsage.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserType | String | Type classification for User. | |
| PurchaseType | String | Type classification for Purchase. | |
| DatacloudEntityType | String | Type classification for DatacloudEntity. | |
| Usage | Double | Field containing Usage information. | |
| Description | String | Text description of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for DataStatistics.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| ExternalId | String | External ID from another system. | |
| StatType | String | Type classification for Stat. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| Type | String | Type of account or classification. | |
| StatValue | Int | Field containing StatValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for DataType.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| IsComplex | Bool | Indicates whether the record has the Complex characteristic. | |
| ContextServiceDataTypeId | String | ID of the ContextServiceDataType associated with this record. | |
| ContextWsdlDataTypeId | String | ID of the ContextWsdlDataType associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for DataUseLegalBasisHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DataUseLegalBasisId | String | ID of the DataUseLegalBasis associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for DataUsePurposeHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DataUsePurposeId | String | ID of the DataUsePurpose associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for DataWeaveResource.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| IsProtected | Bool | Indicates whether the component is protected or not. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ContentType | String | Type classification for Content. | |
| ApiVersion | Double | Field containing ApiVersion information. | |
| BodyLength | Int | Field containing BodyLength information. | |
| IsGlobal | Bool | Indicates whether the record has the Global characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for DatedConversionRate.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsoCode | String | Indicates whether the record has the oCode characteristic. | |
| StartDate | Date | Start date for the record or activity. | |
| NextStartDate | Date | Date associated with NextStart. | |
| ConversionRate | Double | Field containing ConversionRate information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Tracks relationships between events and attendees who have declined invitations.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the declined event relation record. | |
| RelationId | String | ID of the user or contact who declined the event invitation. | |
| RelationIdType | String | Specifies the type of the 'RelationId' polymorphic field to use in the statement. | |
| RelationIdExternalFieldName | String | Specifies the external field name of the 'RelationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| EventId | String |
Event.Id | ID of the event that was declined. |
| RespondedDate | Datetime | Date and time when the decline response was submitted. | |
| Response | String | Response status, such as 'Declined'. | |
| CreatedById | String |
User.Id | ID of the user who created the declined event relation record. |
| LastModifiedDate | Datetime | Date and time when the declined event relation record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the declined event relation record. |
| IsDeleted | Bool | Indicates whether the declined event relation record has been deleted. | |
| Type | String | Specifies the type of relation, such as user, contact, or lead. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Timestamp of the last system update for the declined event relation. | |
| CreatedDate | Datetime | Date and time when the declined event relation record was created. |
Schema file for DeleteEvent.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Record | String | Field containing Record information. | |
| RecordName | String | Field containing RecordName information. | |
| DeletedById | String |
User.Id | ID of the DeletedBy associated with this record. |
| DeletedDate | Datetime | Date associated with Deleted. | |
| SobjectName | String | Field containing SobjectName information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Stores details about custom domains configured for Salesforce sites and communities.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the domain record. | |
| DomainType | String | Type of the domain, such as Custom, Login, or Site. | |
| Domain | String | Fully qualified domain name associated with the Salesforce organization. | |
| OptionsHstsPreload | Bool | Field containing OptionsHstsPreload information. | |
| CnameTarget | String | Field containing CnameTarget information. | |
| HttpsOption | String | Field containing HttpsOption information. | |
| CreatedById | String |
User.Id | ID of the user who created the domain record. |
| LastModifiedDate | Datetime | Date and time when the domain record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the domain record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Timestamp used by Salesforce to track changes to the record. | |
| CreatedDate | Datetime | Date and time when the domain record was created. |
Links custom domains to specific Salesforce sites, managing domain associations.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the domain site record. | |
| DomainId | String |
Domain.Id | ID of the associated domain. |
| SiteId | String |
Site.Id | ID of the associated Salesforce site. |
| PathPrefix | String | Path prefix used to route requests to the correct site. | |
| CreatedById | String |
User.Id | ID of the user who created the domain site record. |
| LastModifiedDate | Datetime | Date and time when the domain site record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the domain site record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Timestamp used by Salesforce to track changes to the record. | |
| CreatedDate | Datetime | Date and time when the domain site record was created. |
Schema file for DuplicateRule.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| SobjectType | String | Type classification for Sobject. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| IsActive | Bool | Indicates whether the record is active. | |
| SobjectSubtype | String | Type classification for SobjectSub. | |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for EmbeddedServiceDetail.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Site | String | The billing address city for this account. | |
| PrimaryColor | String | Field containing PrimaryColor information. | |
| SecondaryColor | String | Field containing SecondaryColor information. | |
| ContrastPrimaryColor | String | Field containing ContrastPrimaryColor information. | |
| ContrastInvertedColor | String | Field containing ContrastInvertedColor information. | |
| NavBarColor | String | Field containing NavBarColor information. | |
| NavBarTextColor | String | Field containing NavBarTextColor information. | |
| SecondaryNavBarColor | String | Field containing SecondaryNavBarColor information. | |
| Font | String | Field containing Font information. | |
| IsLiveAgentEnabled | Bool | Indicates whether the record has the LiveAgentEnabled characteristic. | |
| IsFieldServiceEnabled | Bool | Indicates whether the record has the FieldServiceEnabled characteristic. | |
| Width | Int | Field containing Width information. | |
| Height | Int | Field containing Height information. | |
| IsPrechatEnabled | Bool | Indicates whether the record has the PrechatEnabled characteristic. | |
| CustomPrechatComponent | String | Field containing CustomPrechatComponent information. | |
| AvatarImg | String | Field containing AvatarImg information. | |
| SmallCompanyLogoImg | String | Field containing SmallCompanyLogoImg information. | |
| PrechatBackgroundImg | String | Field containing PrechatBackgroundImg information. | |
| WaitingStateBackgroundImg | String | Field containing WaitingStateBackgroundImg information. | |
| FontSize | String | Field containing FontSize information. | |
| OfflineCaseBackgroundImg | String | Field containing OfflineCaseBackgroundImg information. | |
| IsOfflineCaseEnabled | Bool | Indicates whether the record has the OfflineCaseEnabled characteristic. | |
| IsQueuePositionEnabled | Bool | Indicates whether the record has the QueuePositionEnabled characteristic. | |
| ShouldShowNewAppointment | Bool | Field containing ShouldShowNewAppointment information. | |
| ShouldShowExistingAppointment | Bool | Field containing ShouldShowExistingAppointment information. | |
| FieldServiceHomeImg | String | Field containing FieldServiceHomeImg information. | |
| FieldServiceLogoImg | String | Field containing FieldServiceLogoImg information. | |
| FieldServiceConfirmCardImg | String | Field containing FieldServiceConfirmCardImg information. | |
| ShouldHideAuthDialog | Bool | Field containing ShouldHideAuthDialog information. | |
| CustomMinimizedComponent | String | Field containing CustomMinimizedComponent information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for EmbeddedServiceLabel.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| EmbeddedServiceConfigDeveloperName | String | Field containing EmbeddedServiceConfigDeveloperName information. | |
| LabelKey | String | Field containing LabelKey information. | |
| CustomLabelName | String | Field containing CustomLabelName information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for EngagementChannelTypeHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| EngagementChannelTypeId | String | ID of the EngagementChannelType associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for EntitlementHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| EntitlementId | String |
Entitlement.Id | ID of the Entitlement associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for EntityDefinition.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| QualifiedApiName | String | Field containing QualifiedApiName information. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| Label | String | Field containing Label information. | |
| PluralLabel | String | Field containing PluralLabel information. | |
| DefaultCompactLayoutId | String | ID of the DefaultCompactLayout associated with this record. | |
| IsCustomizable | Bool | Indicates whether the record has the Customizable characteristic. | |
| IsApexTriggerable | Bool | Indicates whether the record has the ApexTriggerable characteristic. | |
| IsWorkflowEnabled | Bool | Indicates whether the record has the WorkflowEnabled characteristic. | |
| IsProcessEnabled | Bool | Indicates whether the record has the ProcessEnabled characteristic. | |
| IsCompactLayoutable | Bool | Indicates whether the record has the CompactLayoutable characteristic. | |
| DeploymentStatus | String | Status of the Deployment. | |
| KeyPrefix | String | Field containing KeyPrefix information. | |
| IsCustomSetting | Bool | Indicates whether the record has the CustomSetting characteristic. | |
| IsDeprecatedAndHidden | Bool | Indicates whether the record has the DeprecatedAndHidden characteristic. | |
| IsReplicateable | Bool | Indicates whether the record has the Replicateable characteristic. | |
| IsRetrieveable | Bool | Indicates whether the record has the Retrieveable characteristic. | |
| IsSearchLayoutable | Bool | Indicates whether the record has the SearchLayoutable characteristic. | |
| IsSearchable | Bool | Indicates whether the record has the Searchable characteristic. | |
| IsTriggerable | Bool | Indicates whether the record has the Triggerable characteristic. | |
| IsIdEnabled | Bool | Indicates whether the record has the IdEnabled characteristic. | |
| IsEverCreatable | Bool | Indicates whether the record has the EverCreatable characteristic. | |
| IsEverUpdatable | Bool | Indicates whether the record has the EverUpdatable characteristic. | |
| IsEverDeletable | Bool | Indicates whether the record has the EverDeletable characteristic. | |
| IsFeedEnabled | Bool | Indicates whether the record has the FeedEnabled characteristic. | |
| IsQueryable | Bool | Indicates whether the record has the Queryable characteristic. | |
| IsMruEnabled | Bool | Indicates whether the record has the MruEnabled characteristic. | |
| DetailUrl | String | Field containing DetailUrl information. | |
| EditUrl | String | Field containing EditUrl information. | |
| NewUrl | String | Field containing NewUrl information. | |
| EditDefinitionUrl | String | Field containing EditDefinitionUrl information. | |
| HelpSettingPageName | String | Field containing HelpSettingPageName information. | |
| HelpSettingPageUrl | String | Field containing HelpSettingPageUrl information. | |
| RunningUserEntityAccessId | String | ID of the RunningUserEntityAccess associated with this record. | |
| PublisherId | String |
Publisher.Id | ID of the Publisher associated with this record. |
| IsLayoutable | Bool | Indicates whether the record has the Layoutable characteristic. | |
| RecordTypesSupported | String | Field containing RecordTypesSupported information. | |
| InternalSharingModel | String | Field containing InternalSharingModel information. | |
| ExternalSharingModel | String | Field containing ExternalSharingModel information. | |
| HasSubtypes | Bool | Indicates whether the record has Subtypes. | |
| IsSubtype | Bool | Indicates whether the record has the Subtype characteristic. | |
| IsAutoActivityCaptureEnabled | Bool | Indicates whether the record has the AutoActivityCaptureEnabled characteristic. | |
| IsInterface | Bool | Indicates whether the record has the Interface characteristic. | |
| ImplementsInterfaces | String | Field containing ImplementsInterfaces information. | |
| ImplementedBy | String | Field containing ImplementedBy information. | |
| ExtendsInterfaces | String | Field containing ExtendsInterfaces information. | |
| ExtendedBy | String | Field containing ExtendedBy information. | |
| DefaultImplementation | String | Field containing DefaultImplementation information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for EntityMilestoneHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| EntityMilestoneId | String | ID of the EntityMilestone associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for EntityParticle.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| QualifiedApiName | String | Field containing QualifiedApiName information. | |
| EntityDefinitionId | String | ID of the EntityDefinition associated with this record. | |
| FieldDefinitionId | String | ID of the FieldDefinition associated with this record. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| Label | String | Field containing Label information. | |
| Length | Int | Field containing Length information. | |
| DataType | String | Type classification for Data. | |
| ServiceDataTypeId | String |
DataType.Id | ID of the ServiceDataType associated with this record. |
| ValueTypeId | String |
DataType.Id | ID of the ValueType associated with this record. |
| ExtraTypeInfo | String | Field containing ExtraTypeInfo information. | |
| IsAutonumber | Bool | Indicates whether the record has the Autonumber characteristic. | |
| ByteLength | Int | Field containing ByteLength information. | |
| IsCaseSensitive | Bool | Indicates whether the record has the CaseSensitive characteristic. | |
| IsUnique | Bool | Indicates whether the record has the Unique characteristic. | |
| IsCreatable | Bool | Indicates whether the record has the Creatable characteristic. | |
| IsUpdatable | Bool | Indicates whether the record has the Updatable characteristic. | |
| IsDefaultedOnCreate | Bool | Indicates whether the record has the DefaultedOnCreate characteristic. | |
| IsWriteRequiresMasterRead | Bool | Indicates whether the record has the WriteRequiresMasterRead characteristic. | |
| IsCalculated | Bool | Indicates whether the record has the Calculated characteristic. | |
| IsHighScaleNumber | Bool | Indicates whether the record has the HighScaleNumber characteristic. | |
| IsHtmlFormatted | Bool | Indicates whether the record has the HtmlFormatted characteristic. | |
| IsNameField | Bool | Indicates whether the record has the NameField characteristic. | |
| IsNillable | Bool | Indicates whether the record has the Nillable characteristic. | |
| IsPermissionable | Bool | Indicates whether the record has the Permissionable characteristic. | |
| IsEncrypted | Bool | Indicates whether the record has the Encrypted characteristic. | |
| Digits | Int | Field containing Digits information. | |
| InlineHelpText | String | Field containing InlineHelpText information. | |
| RelationshipName | String | Field containing RelationshipName information. | |
| ReferenceTargetField | String | Field containing ReferenceTargetField information. | |
| Name | String | Name of the record. | |
| Mask | String | Field containing Mask information. | |
| MaskType | String | Type classification for Mask. | |
| IsWorkflowFilterable | Bool | Indicates whether the record has the WorkflowFilterable characteristic. | |
| IsCompactLayoutable | Bool | Indicates whether the record has the CompactLayoutable characteristic. | |
| Precision | Int | Field containing Precision information. | |
| Scale | Int | Field containing Scale information. | |
| IsFieldHistoryTracked | Bool | Indicates whether the record has the FieldHistoryTracked characteristic. | |
| IsApiFilterable | Bool | Indicates whether the record has the ApiFilterable characteristic. | |
| IsApiSortable | Bool | Indicates whether the record has the ApiSortable characteristic. | |
| IsApiGroupable | Bool | Indicates whether the record has the ApiGroupable characteristic. | |
| IsListVisible | Bool | Indicates whether the record has the ListVisible characteristic. | |
| IsLayoutable | Bool | Indicates whether the record has the Layoutable characteristic. | |
| IsDependentPicklist | Bool | Indicates whether the record has the DependentPicklist characteristic. | |
| IsDeprecatedAndHidden | Bool | Indicates whether the record has the DeprecatedAndHidden characteristic. | |
| IsDisplayLocationInDecimal | Bool | Indicates whether the record has the DisplayLocationInDecimal characteristic. | |
| DefaultValueFormula | String | Field containing DefaultValueFormula information. | |
| IsIdLookup | Bool | Indicates whether the record has the IdLookup characteristic. | |
| IsNamePointing | Bool | Indicates whether the record has the NamePointing characteristic. | |
| RelationshipOrder | Int | Field containing RelationshipOrder information. | |
| ReferenceTo | String | Field containing ReferenceTo information. | |
| IsComponent | Bool | Indicates whether the record has the Component characteristic. | |
| IsCompound | Bool | Indicates whether the record has the Compound characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for EventBusSubscriber.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| ExternalId | String | External ID from another system. | |
| Name | String | Name of the record. | |
| Type | String | Type of account or classification. | |
| Topic | String | Field containing Topic information. | |
| Position | Int | Field containing Position information. | |
| Tip | Int | Field containing Tip information. | |
| Retries | Int | Field containing Retries information. | |
| LastError | String | Field containing LastError information. | |
| Status | String | Status of the record. | |
| IsPartitioned | Bool | Indicates whether the record has the Partitioned characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for EventLogFile.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| EventType | String | Type classification for Event. | |
| LogDate | Datetime | Date associated with Log. | |
| LogFileLength | Double | Field containing LogFileLength information. | |
| LogFileContentType | String | Type classification for LogFileContent. | |
| ApiVersion | Double | Field containing ApiVersion information. | |
| Sequence | Int | Field containing Sequence information. | |
| Interval | String | Field containing Interval information. | |
| LogFileFieldNames | String | Field containing LogFileFieldNames information. | |
| LogFileFieldTypes | String | Field containing LogFileFieldTypes information. | |
| LogFile | String | Field containing LogFile information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for EventRelayConfig.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| EventChannel | String | Field containing EventChannel information. | |
| DestinationResourceName | String | Field containing DestinationResourceName information. | |
| State | String | State or province portion of the address. | |
| RelayOption | String | Field containing RelayOption information. | |
| UsageType | String | Type classification for Usage. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for EventRelayFeedback.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| EventRelayNumber | String | EventRelay identification number. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| EventRelayConfigId | String | ID of the EventRelayConfig associated with this record. | |
| RemoteResource | String | Field containing RemoteResource information. | |
| Status | String | Status of the record. | |
| ErrorMessage | String | Field containing ErrorMessage information. | |
| ErrorTime | Datetime | Field containing ErrorTime information. | |
| ErrorIdentifier | String | Field containing ErrorIdentifier information. | |
| ErrorCode | String | Field containing ErrorCode information. | |
| LastRelayedEventTime | Datetime | Field containing LastRelayedEventTime information. | |
| UsageType | String | Type classification for Usage. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExpressionSetView.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Name | String | Name of the record. | |
| Description | String | Text description of the record. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| IsTemplate | Bool | Indicates whether the record has the Template characteristic. | |
| LastModifiedBy | String | Field containing LastModifiedBy information. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| ExpressionSetDetails | String | Field containing ExpressionSetDetails information. | |
| IsExecutable | Bool | Indicates whether the record has the Executable characteristic. | |
| UsageType | String | Type classification for Usage. | |
| UsageTypeLabel | String | Field containing UsageTypeLabel information. | |
| HasContextDefinitionRef | Bool | Indicates whether the record has ContextDefinitionRef. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ExternalAIModel.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ApplicationType | String | Type classification for Application. | |
| ExternalModelKey | String | Field containing ExternalModelKey information. | |
| Status | String | Status of the record. | |
| Threshold | Double | Field containing Threshold information. | |
| TrainingJobName | String | Field containing TrainingJobName information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExternalClientApplication.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ContactEmail | String | Field containing ContactEmail information. | |
| ContactPhone | String | Field containing ContactPhone information. | |
| DistributionState | String | State or province for Distribution address. | |
| ManagedType | String | Type classification for Managed. | |
| ManagedCollection | String | Field containing ManagedCollection information. | |
| ManagedSetupPointer | String | Field containing ManagedSetupPointer information. | |
| OrgScopedExternalApp | String | Field containing OrgScopedExternalApp information. | |
| LogoUrl | String | Field containing LogoUrl information. | |
| InfoUrl | String | Field containing InfoUrl information. | |
| IconUrl | String | Field containing IconUrl information. | |
| Description | String | Text description of the record. | |
| Version | String | Field containing Version information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExternalDataSource.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Type | String | Type of account or classification. | |
| Endpoint | String | Field containing Endpoint information. | |
| Repository | String | Field containing Repository information. | |
| IsWritable | Bool | Indicates whether the record has the Writable characteristic. | |
| PrincipalType | String | Type classification for Principal. | |
| Protocol | String | Field containing Protocol information. | |
| AuthProviderId | String |
AuthProvider.Id | ID of the AuthProvider associated with this record. |
| LargeIconId | String | ID of the LargeIcon associated with this record. | |
| SmallIconId | String | ID of the SmallIcon associated with this record. | |
| CustomConfiguration | String | Field containing CustomConfiguration information. | |
| NamedCredentialId | String | ID of the NamedCredential associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExternalDataSrcDescriptor.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ExternalDataSourceId | String | ID of the ExternalDataSource associated with this record. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Type | String | Type of account or classification. | |
| SystemVersion | Int | Field containing SystemVersion information. | |
| DescriptorVersion | String | Field containing DescriptorVersion information. | |
| Subtype | String | Type classification for Sub. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppAndroidPushConfig.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExtlClntAppPushSettingsId | String | ID of the ExtlClntAppPushSettings associated with this record. | |
| FcmProject | String | Field containing FcmProject information. | |
| ServiceAccount | String | Number of ServiceAc associated with this record. | |
| IsCurrent | Bool | Indicates whether the record has the Current characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppApplePushConfig.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExtlClntAppPushSettingsId | String | ID of the ExtlClntAppPushSettings associated with this record. | |
| Environment | String | Field containing Environment information. | |
| Certificate | String | Field containing Certificate information. | |
| Password | String | Field containing Password information. | |
| KeyIdentifier | String | Field containing KeyIdentifier information. | |
| TeamIdentifier | String | Field containing TeamIdentifier information. | |
| SigningKey | String | Field containing SigningKey information. | |
| ApplicationBundle | String | Field containing ApplicationBundle information. | |
| IsCurrent | Bool | Indicates whether the record has the Current characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppMobileSettings.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| IsScreenLockEnabled | Bool | Indicates whether the record has the ScreenLockEnabled characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppMobPlcyConfig.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| ExtlClntAppMobileSettingsId | String | ID of the ExtlClntAppMobileSettings associated with this record. | |
| ScreenLockTimeout | String | Field containing ScreenLockTimeout information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppNotifSettings.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| ExtlClntAppOauthSettingsId | String | ID of the ExtlClntAppOauthSettings associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppNotifType.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExtlClntAppNotifSettingsId | String | ID of the ExtlClntAppNotifSettings associated with this record. | |
| NotificationType | String | Type classification for Notification. | |
| IsPushByDefault | Bool | Indicates whether the record has the PushByDefault characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppOauthConsumer.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| ExtlClntAppOauthSettingsId | String | ID of the ExtlClntAppOauthSettings associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppOauthIpRange.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExtlClntAppOauthSettingsId | String | ID of the ExtlClntAppOauthSettings associated with this record. | |
| StartIpAddress | String | Field containing StartIpAddress information. | |
| EndIpAddress | String | Field containing EndIpAddress information. | |
| Description | String | Text description of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppOauthPlcyAttr.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExtlClntAppOauthPlcyCnfgId | String | ID of the ExtlClntAppOauthPlcyCnfg associated with this record. | |
| Key | String | Field containing Key information. | |
| Value | String | Field containing Value information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppOauthPlcyCnfg.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| RefreshTokenPolicyType | String | Type classification for RefreshTokenPolicy. | |
| RefreshTokenValidityPeriod | Int | Field containing RefreshTokenValidityPeriod information. | |
| RefreshTokenValidityUnit | String | Field containing RefreshTokenValidityUnit information. | |
| IpRelaxationPolicyType | String | Type classification for IpRelaxationPolicy. | |
| PermittedUsersPolicyType | String | Type classification for PermittedUsersPolicy. | |
| SessionTimeoutInMinutes | Int | Field containing SessionTimeoutInMinutes information. | |
| RequiredSessionLevel | String | Field containing RequiredSessionLevel information. | |
| PolicyAction | String | Field containing PolicyAction information. | |
| ExtlClntAppOauthSettingsId | String | ID of the ExtlClntAppOauthSettings associated with this record. | |
| IsClientCredentialsFlowEnabled | Bool | Indicates whether the record has the ClientCredentialsFlowEnabled characteristic. | |
| ClientCredentialsFlowUser | String | Field containing ClientCredentialsFlowUser information. | |
| ApexHandlerId | String |
ApexClass.Id | ID of the ApexHandler associated with this record. |
| ExecuteHandlerAsId | String |
User.Id | ID of the ExecuteHandlerAs associated with this record. |
| SingleLogoutUrl | String | Field containing SingleLogoutUrl information. | |
| StartUrl | String | Field containing StartUrl information. | |
| IsTokenExchangeFlowEnabled | Bool | Indicates whether the record has the TokenExchangeFlowEnabled characteristic. | |
| IsGuestCodeCredFlowEnabled | Bool | Indicates whether the record has the GuestCodeCredFlowEnabled characteristic. | |
| IsNamedUserJwtEnabled | Bool | Indicates whether the record has the NamedUserJwtEnabled characteristic. | |
| GuestJwtTimeout | String | Field containing GuestJwtTimeout information. | |
| NamedUserJwtTimeout | String | Field containing NamedUserJwtTimeout information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppOauthPlcyCustmScp.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExtlClntAppOauthPlcyCnfgId | String | ID of the ExtlClntAppOauthPlcyCnfg associated with this record. | |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| OauthCustomScopeId | String | ID of the OauthCustomScope associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppOauthSetAttr.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExtlClntAppOauthSettingsId | String | ID of the ExtlClntAppOauthSettings associated with this record. | |
| Key | String | Field containing Key information. | |
| Value | String | Field containing Value information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppOauthSetCustmScp.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExtlClntAppOauthSettingsId | String | ID of the ExtlClntAppOauthSettings associated with this record. | |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| OauthCustomScopeId | String | ID of the OauthCustomScope associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppOauthSettings.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| OauthScopesSSO | Bool | Field containing OauthScopesSSO information. | |
| OauthScopesAPI | Bool | Field containing OauthScopesAPI information. | |
| OauthScopesWEB | Bool | Field containing OauthScopesWEB information. | |
| OauthScopesFULL | Bool | Field containing OauthScopesFULL information. | |
| OauthScopesCHATTER_REST_API | Bool | Field containing OauthScopesCHATTER_REST_API information. | |
| OauthScopesVF | Bool | Field containing OauthScopesVF information. | |
| OauthScopesREFRESH_TOKEN | Bool | Field containing OauthScopesREFRESH_TOKEN information. | |
| OauthScopesOPENID | Bool | ID of the OauthScopesOPEN associated with this record. | |
| OauthScopesPROFILE | Bool | Field containing OauthScopesPROFILE information. | |
| OauthScopesEMAIL | Bool | Field containing OauthScopesEMAIL information. | |
| OauthScopesADDRESS | Bool | Field containing OauthScopesADDRESS information. | |
| OauthScopesPHONE | Bool | Field containing OauthScopesPHONE information. | |
| OauthScopesOFFLINE_ACCESS | Bool | Field containing OauthScopesOFFLINE_ACCESS information. | |
| OauthScopesCUSTOM_PERMISSIONS | Bool | Field containing OauthScopesCUSTOM_PERMISSIONS information. | |
| OauthScopesWAVE_REST_API | Bool | Field containing OauthScopesWAVE_REST_API information. | |
| OauthScopesECLAIR_REST_API | Bool | Field containing OauthScopesECLAIR_REST_API information. | |
| OauthScopesHUB_API | Bool | Field containing OauthScopesHUB_API information. | |
| OauthScopesPARDOT_API | Bool | Field containing OauthScopesPARDOT_API information. | |
| OauthScopesLIGHTNING | Bool | Field containing OauthScopesLIGHTNING information. | |
| OauthScopesCONTENT | Bool | Field containing OauthScopesCONTENT information. | |
| OauthScopesCDP_INGEST_API | Bool | Field containing OauthScopesCDP_INGEST_API information. | |
| OauthScopesCDP_PROFILE_API | Bool | Field containing OauthScopesCDP_PROFILE_API information. | |
| OauthScopesCDP_QUERY_API | Bool | Field containing OauthScopesCDP_QUERY_API information. | |
| OauthScopesCHATBOT_API | Bool | Field containing OauthScopesCHATBOT_API information. | |
| OauthScopesCDP_SEGMENT_API | Bool | Field containing OauthScopesCDP_SEGMENT_API information. | |
| OauthScopesCDP_IDENTITYRESOLUTION_API | Bool | Field containing OauthScopesCDP_IDENTITYRESOLUTION_API information. | |
| OauthScopesFORGOT_PASSWORD | Bool | Field containing OauthScopesFORGOT_PASSWORD information. | |
| OauthScopesCDP_CALCULATED_INSIGHT_API | Bool | Field containing OauthScopesCDP_CALCULATED_INSIGHT_API information. | |
| OauthScopesUSER_REGISTRATION_API | Bool | Field containing OauthScopesUSER_REGISTRATION_API information. | |
| OauthScopesSFAP_API | Bool | Field containing OauthScopesSFAP_API information. | |
| OauthScopesINTERACTION_API | Bool | Field containing OauthScopesINTERACTION_API information. | |
| OauthScopesCDP_API | Bool | Field containing OauthScopesCDP_API information. | |
| OauthScopesEINSTEIN_GPT_API | Bool | Field containing OauthScopesEINSTEIN_GPT_API information. | |
| OauthScopesPWDLESS_LOGIN_API | Bool | Field containing OauthScopesPWDLESS_LOGIN_API information. | |
| OauthLink | String | Field containing OauthLink information. | |
| SingleLogoutUrl | String | Field containing SingleLogoutUrl information. | |
| ExtlClntAppOauthOptionsFirstPartyAppEnabled | Bool | Field containing ExtlClntAppOauthOptionsFirstPartyAppEnabled information. | |
| ClientAssertionCertificate | String | Field containing ClientAssertionCertificate information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppPlcyCnfg.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| IsEnabled | Bool | Indicates whether the record has the Enabled characteristic. | |
| OauthPluginStatus | String | Status of the OauthPlugin. | |
| NotifPluginStatus | String | Status of the NotifPlugin. | |
| MobilePluginStatus | String | Status of the MobilePlugin. | |
| PushPluginStatus | String | Status of the PushPlugin. | |
| StartPage | String | Field containing StartPage information. | |
| SamlPluginStatus | String | Status of the SamlPlugin. | |
| StartUrl | String | Field containing StartUrl information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppPushPolicyConfig.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| ExtlClntAppPushSettingsId | String | ID of the ExtlClntAppPushSettings associated with this record. | |
| IsFullContent | Bool | Indicates whether the record has the FullContent characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppPushSettings.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| ExtlClntAppOauthSettingsId | String | ID of the ExtlClntAppOauthSettings associated with this record. | |
| PushServiceType | String | Type classification for PushService. | |
| PushConfigLink | String | Field containing PushConfigLink information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppSamplePlcyCnfg.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| AdminOnlyPolicy | String | Field containing AdminOnlyPolicy information. | |
| Policy1 | String | Field containing Policy1 information. | |
| Policy2 | String | Field containing Policy2 information. | |
| ExtlClntAppSampleSettingsId | String | ID of the ExtlClntAppSampleSettings associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ExtlClntAppSampleSettings.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ExternalClientApplicationId | String | ID of the ExternalClientApplication associated with this record. | |
| Version | String | Field containing Version information. | |
| DevicePlatform | String | Field containing DevicePlatform information. | |
| MinimumOsVersion | String | Field containing MinimumOsVersion information. | |
| DeviceType | String | Type classification for Device. | |
| Policy1 | String | Field containing Policy1 information. | |
| Policy2 | String | Field containing Policy2 information. | |
| DevManagedPolicyFieldsPolicy1 | Bool | Field containing DevManagedPolicyFieldsPolicy1 information. | |
| DevManagedPolicyFieldsPolicy2 | Bool | Field containing DevManagedPolicyFieldsPolicy2 information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stores poll choices created in Chatter posts, allowing users to vote on different options.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the feed poll choice. | |
| FeedItemId | String | ID of the feed item that the poll choice belongs to. | |
| Position | Int | Order of the poll choice in the list of available options. | |
| ChoiceBody | String | Text of the poll choice displayed to users. | |
| CreatedById | String |
User.Id | ID of the user who created the poll choice. |
| IsDeleted | Bool | Indicates whether the poll choice has been deleted. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the poll choice was created. |
Tracks user votes on Chatter polls, recording poll responses and selections.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the feed poll vote. | |
| FeedItemId | String | ID of the feed item that the vote is associated with. | |
| ChoiceId | String | ID of the selected poll choice. | |
| CreatedById | String |
User.Id | ID of the user who submitted the vote. |
| LastModifiedDate | Datetime | Date and time when the vote was last modified. | |
| IsDeleted | Bool | Indicates whether the vote has been deleted. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the vote was created. |
Schema file for FeedRevision.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| FeedEntityId | String | ID of the FeedEntity associated with this record. | |
| Revision | Int | Field containing Revision information. | |
| Action | String | Field containing Action information. | |
| EditedAttribute | String | Field containing EditedAttribute information. | |
| Value | String | Field containing Value information. | |
| IsValueRichText | Bool | Indicates whether the record has the ValueRichText characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FieldDefinition.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| QualifiedApiName | String | Field containing QualifiedApiName information. | |
| EntityDefinitionId | String | ID of the EntityDefinition associated with this record. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| Label | String | Field containing Label information. | |
| Length | Int | Field containing Length information. | |
| DataType | String | Type classification for Data. | |
| ServiceDataTypeId | String |
DataType.Id | ID of the ServiceDataType associated with this record. |
| ValueTypeId | String |
DataType.Id | ID of the ValueType associated with this record. |
| ExtraTypeInfo | String | Field containing ExtraTypeInfo information. | |
| IsCalculated | Bool | Indicates whether the record has the Calculated characteristic. | |
| IsHighScaleNumber | Bool | Indicates whether the record has the HighScaleNumber characteristic. | |
| IsHtmlFormatted | Bool | Indicates whether the record has the HtmlFormatted characteristic. | |
| IsNameField | Bool | Indicates whether the record has the NameField characteristic. | |
| IsNillable | Bool | Indicates whether the record has the Nillable characteristic. | |
| IsWorkflowFilterable | Bool | Indicates whether the record has the WorkflowFilterable characteristic. | |
| IsCompactLayoutable | Bool | Indicates whether the record has the CompactLayoutable characteristic. | |
| Precision | Int | Field containing Precision information. | |
| Scale | Int | Field containing Scale information. | |
| IsFieldHistoryTracked | Bool | Indicates whether the record has the FieldHistoryTracked characteristic. | |
| IsIndexed | Bool | Indicates whether the record has the Indexed characteristic. | |
| IsApiFilterable | Bool | Indicates whether the record has the ApiFilterable characteristic. | |
| IsApiSortable | Bool | Indicates whether the record has the ApiSortable characteristic. | |
| IsListFilterable | Bool | Indicates whether the record has the ListFilterable characteristic. | |
| IsListSortable | Bool | Indicates whether the record has the ListSortable characteristic. | |
| IsApiGroupable | Bool | Indicates whether the record has the ApiGroupable characteristic. | |
| IsListVisible | Bool | Indicates whether the record has the ListVisible characteristic. | |
| ControllingFieldDefinitionId | String | ID of the ControllingFieldDefinition associated with this record. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| PublisherId | String |
Publisher.Id | ID of the Publisher associated with this record. |
| RunningUserFieldAccessId | String | ID of the RunningUserFieldAccess associated with this record. | |
| RelationshipName | String | Field containing RelationshipName information. | |
| ReferenceTo | String | Field containing ReferenceTo information. | |
| ReferenceTargetField | String | Field containing ReferenceTargetField information. | |
| IsCompound | Bool | Indicates whether the record has the Compound characteristic. | |
| IsSearchPrefilterable | Bool | Indicates whether the record has the SearchPrefilterable characteristic. | |
| IsPolymorphicForeignKey | Bool | Indicates whether the record has the PolymorphicForeignKey characteristic. | |
| IsAiPredictionField | Bool | Indicates whether the record has the AiPredictionField characteristic. | |
| BusinessOwnerId | String | ID of the BusinessOwner associated with this record. | |
| BusinessOwnerIdType | String | Specifies the type of the 'BusinessOwnerId' polymorphic field to use in the statement. | |
| BusinessOwnerIdExternalFieldName | String | Specifies the external field name of the 'BusinessOwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| BusinessStatus | String | Status of the Business. | |
| SecurityClassification | String | Field containing SecurityClassification information. | |
| ComplianceGroup | String | Field containing ComplianceGroup information. | |
| Description | String | Text description of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Stores metadata about relationship fields within a table, identifying how objects are linked and the types of records they can reference.
| Name | Type | References | Description |
| Name [KEY] | String | API name of the field that defines the relationship, such as AccountId or OwnerId. | |
| ReferenceTo [KEY] | String | Name of the target object or table that this relationship field refers to. | |
| RelationshipName [KEY] | String | API name used to access the related object from this field, typically used in queries or code. | |
| Label | String | User-facing label for the relationship field, as displayed in the Salesforce UI. |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description | |
| TableName | String | The name of the table to retrieve relationship information from. |
Schema file for FieldSecurityClassification.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Field containing SortOrder information. | |
| Description | String | Text description of the record. | |
| IsHighRiskLevel | Bool | Indicates whether the record has the HighRiskLevel characteristic. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FileEventStore.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedDate | Datetime | Date and time when the record was created. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| DocumentId | String | ID of the Document associated with this record. | |
| VersionId | String | ID of the Version associated with this record. | |
| FileName | String | Field containing FileName information. | |
| FileType | String | Type classification for File. | |
| ContentSize | Int | Field containing ContentSize information. | |
| CanDownloadPdf | Bool | Indicates whether the user or record can perform DownloadPdf action. | |
| VersionNumber | String | Version identification number. | |
| ProcessDuration | Double | Field containing ProcessDuration information. | |
| IsLatestVersion | Bool | Indicates whether the record has the LatestVersion characteristic. | |
| FileSource | String | Field containing FileSource information. | |
| FileAction | String | Field containing FileAction information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for FileSearchActivity.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| SearchTerm | String | Field containing SearchTerm information. | |
| QueryDate | Date | Date associated with Query. | |
| CountQueries | Int | Field containing CountQueries information. | |
| CountUsers | Int | Field containing CountUsers information. | |
| AvgNumResults | Double | Field containing AvgNumResults information. | |
| Period | String | Field containing Period information. | |
| QueryLanguage | String | Field containing QueryLanguage information. | |
| ClickRank | Double | Field containing ClickRank information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stores fiscal year configurations, defining the start date and structure for financial reporting.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the fiscal year settings record. | |
| PeriodId | String |
Period.Id | ID of the period associated with this fiscal year configuration. |
| StartDate | Date | Start date of the fiscal year. | |
| EndDate | Date | End date of the fiscal year. | |
| Name | String | Name assigned to the fiscal year, such as 'FY2025'. | |
| IsStandardYear | Bool | Indicates whether the fiscal year follows the standard calendar year (true) or a custom configuration (false). | |
| YearType | String | Type of fiscal year, such as 'Standard' or 'Custom'. | |
| QuarterLabelScheme | String | Labeling scheme used for fiscal quarters, such as numeric or alphabetic. | |
| PeriodLabelScheme | String | Labeling scheme used for fiscal periods. | |
| WeekLabelScheme | String | Labeling scheme used for fiscal weeks. | |
| QuarterPrefix | String | Prefix used when naming fiscal quarters. | |
| PeriodPrefix | String | Prefix used when naming fiscal periods. | |
| WeekStartDay | Int | Numeric representation of the day that weeks begin on, such as 1 for Sunday or 2 for Monday. | |
| Description | String | Additional description or notes for the fiscal year settings. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Timestamp indicating the last system update to this record. |
Schema file for FlexQueueItem.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| FlexQueueItemId | String | ID of the FlexQueueItem associated with this record. | |
| JobType | String | Type classification for Job. | |
| AsyncApexJobId | String |
AsyncApexJob.Id | ID of the AsyncApexJob associated with this record. |
| JobPosition | Int | Field containing JobPosition information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for FlowDefinitionView.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| Label | String | Field containing Label information. | |
| Description | String | Text description of the record. | |
| ProcessType | String | Type classification for Process. | |
| TriggerType | String | Type classification for Trigger. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| ActiveVersionId | String | ID of the ActiveVersion associated with this record. | |
| LatestVersionId | String | ID of the LatestVersion associated with this record. | |
| LastModifiedBy | String | Field containing LastModifiedBy information. | |
| IsActive | Bool | Indicates whether the record is active. | |
| IsOutOfDate | Bool | Indicates whether the record has the OutOfDate characteristic. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| IsTemplate | Bool | Indicates whether the record has the Template characteristic. | |
| IsOverridable | Bool | Indicates whether the record has the Overridable characteristic. | |
| OverriddenById | String | ID of the OverriddenBy associated with this record. | |
| SourceTemplateId | String | ID of the SourceTemplate associated with this record. | |
| OverriddenFlowId | String | ID of the OverriddenFlow associated with this record. | |
| IsSwingFlow | Bool | Indicates whether the record has the SwingFlow characteristic. | |
| Builder | String | Field containing Builder information. | |
| ManageableState | String | State or province for Manageable address. | |
| InstalledPackageName | String | Field containing InstalledPackageName information. | |
| TriggerObjectOrEventLabel | String | Field containing TriggerObjectOrEventLabel information. | |
| TriggerObjectOrEventId | String | ID of the TriggerObjectOrEvent associated with this record. | |
| RecordTriggerType | String | Type classification for RecordTrigger. | |
| HasAsyncAfterCommitPath | Bool | Indicates whether the record has AsyncAfterCommitPath. | |
| VersionNumber | Int | Version identification number. | |
| TriggerOrder | Int | Field containing TriggerOrder information. | |
| Environments | String | Field containing Environments information. | |
| ApiVersion | Int | Field containing ApiVersion information. | |
| CapacityCategory | String | Field containing CapacityCategory information. | |
| AreMetricsLoggedToDataCloud | Bool | Field containing AreMetricsLoggedToDataCloud information. | |
| SupportedEnvironments | String | Field containing SupportedEnvironments information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for FlowInterviewLog.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| FlowDeveloperName | String | Field containing FlowDeveloperName information. | |
| FlowInterviewGuid | String | ID of the FlowInterviewGu associated with this record. | |
| FlowVersionNumber | Int | FlowVersion identification number. | |
| InterviewStartTimestamp | Datetime | Field containing InterviewStartTimestamp information. | |
| InterviewEndTimestamp | Datetime | Field containing InterviewEndTimestamp information. | |
| InterviewDurationInMinutes | Double | Field containing InterviewDurationInMinutes information. | |
| InterviewStatus | String | Status of the Interview. | |
| FlowNamespace | String | Field containing FlowNamespace information. | |
| FlowLabel | String | Field containing FlowLabel information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FlowInterviewLogEntry.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| FlowInterviewLogId | String | ID of the FlowInterviewLog associated with this record. | |
| LogEntryType | String | Type classification for LogEntry. | |
| ElementApiName | String | Field containing ElementApiName information. | |
| LogEntryTimestamp | Datetime | Field containing LogEntryTimestamp information. | |
| DurationSinceStartInMinutes | Double | Field containing DurationSinceStartInMinutes information. | |
| ElementDurationInMinutes | Double | Field containing ElementDurationInMinutes information. | |
| ElementLabel | String | Field containing ElementLabel information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FlowOrchestrationVersion.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| FlowOrchestrationId | String | ID of the FlowOrchestration associated with this record. | |
| VersionNumber | Int | Version identification number. | |
| ActivatedById | String |
User.Id | ID of the ActivatedBy associated with this record. |
| ActivatedDate | Datetime | Date associated with Activated. | |
| OrchestrationType | String | Type classification for Orchestration. | |
| Status | String | Status of the record. | |
| Description | String | Text description of the record. | |
| RunInMode | String | Field containing RunInMode information. | |
| ApiVersion | Double | Field containing ApiVersion information. | |
| IsTemplate | Bool | Indicates whether the record has the Template characteristic. | |
| TriggerObjectOrEventLabel | String | Field containing TriggerObjectOrEventLabel information. | |
| SourceTemplateId | String | ID of the SourceTemplate associated with this record. | |
| IsOverridable | Bool | Indicates whether the record has the Overridable characteristic. | |
| OverriddenById | String | ID of the OverriddenBy associated with this record. | |
| OverriddenOrchestrationId | String | ID of the OverriddenOrchestration associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FlowRecordElement.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| FlowRecordVersionId | String | ID of the FlowRecordVersion associated with this record. | |
| ElementName | String | Field containing ElementName information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FlowRecordElementOccurrence.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| FlowRecordVersionOccurrenceId | String | ID of the FlowRecordVersionOccurrence associated with this record. | |
| FlowRecordId | String |
FlowRecord.Id | ID of the FlowRecord associated with this record. |
| FlowRecordVersionId | String | ID of the FlowRecordVersion associated with this record. | |
| FlowRecordElementId | String | ID of the FlowRecordElement associated with this record. | |
| Entries | Int | Field containing Entries information. | |
| Exits | Int | Field containing Exits information. | |
| Errors | Int | Field containing Errors information. | |
| Stopped | Int | Field containing Stopped information. | |
| TotalDuration | String | Field containing TotalDuration information. | |
| Waiting | Int | Field containing Waiting information. | |
| Retrying | Int | Field containing Retrying information. | |
| Paused | Int | Field containing Paused information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FlowRecordVersionOccurrence.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| FlowRecordVersionId | String | ID of the FlowRecordVersion associated with this record. | |
| FlowRecordId | String |
FlowRecord.Id | ID of the FlowRecord associated with this record. |
| ProgressStatus | String | Status of the Progress. | |
| ScheduledDate | Datetime | Date associated with Scheduled. | |
| Entries | Int | Field containing Entries information. | |
| Exits | Int | Field containing Exits information. | |
| Errors | Int | Field containing Errors information. | |
| Stopped | Int | Field containing Stopped information. | |
| ErrorDetail | String | Field containing ErrorDetail information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FlowTestResult.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| FlowVersionNumber | Int | FlowVersion identification number. | |
| Result | String | Field containing Result information. | |
| FlowTestViewId | String |
FlowTestView.Id | ID of the FlowTestView associated with this record. |
| FlowVersionViewId | String | ID of the FlowVersionView associated with this record. | |
| FlowDefinitionViewId | String | ID of the FlowDefinitionView associated with this record. | |
| TestStartDateTime | Datetime | Field containing TestStartDateTime information. | |
| TestEndDateTime | Datetime | Field containing TestEndDateTime information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FlowTestView.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| FlowDefinitionViewId | String | ID of the FlowDefinitionView associated with this record. | |
| FlowTestApiName | String | Field containing FlowTestApiName information. | |
| FlowTestLabel | String | Field containing FlowTestLabel information. | |
| Description | String | Text description of the record. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for FlowVariableView.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| FlowVersionViewId | String | ID of the FlowVersionView associated with this record. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| Description | String | Text description of the record. | |
| DataType | String | Type classification for Data. | |
| IsInput | Bool | Indicates whether the record has the Input characteristic. | |
| IsOutput | Bool | Indicates whether the record has the Output characteristic. | |
| IsCollection | Bool | Indicates whether the record has the Collection characteristic. | |
| ObjectType | String | Type classification for Object. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for FlowVersionView.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| FlowDefinitionViewId | String | ID of the FlowDefinitionView associated with this record. | |
| Label | String | Field containing Label information. | |
| Description | String | Text description of the record. | |
| Status | String | Status of the record. | |
| VersionNumber | Int | Version identification number. | |
| ProcessType | String | Type classification for Process. | |
| IsTemplate | Bool | Indicates whether the record has the Template characteristic. | |
| RunInMode | String | Field containing RunInMode information. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| IsSwingFlow | Bool | Indicates whether the record has the SwingFlow characteristic. | |
| ApiVersion | Double | Field containing ApiVersion information. | |
| ApiVersionRuntime | Double | Field containing ApiVersionRuntime information. | |
| CapabilityType | String | Type classification for Capability. | |
| CapacityCategory | String | Field containing CapacityCategory information. | |
| AreMetricsLoggedToDataCloud | Bool | Field containing AreMetricsLoggedToDataCloud information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for FormulaFunction.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Name | String | Name of the record. | |
| Label | String | Field containing Label information. | |
| CategoryId | String | ID of the Category associated with this record. | |
| Description | String | Text description of the record. | |
| ExampleString | String | Field containing ExampleString information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for FormulaFunctionAllowedType.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| FunctionId | String | ID of the Function associated with this record. | |
| Type | String | Type of account or classification. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for FormulaFunctionCategory.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Name | String | Name of the record. | |
| Label | String | Field containing Label information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
This table lists formulas for the specified TableName.
The Cloud processes all filters client-side within the Cloud. The following queries are the only ones processed server side:
SELECT * FROM Formulas WHERE TableName = 'Account'
Note: Querying the table without a TableName filter specified will attempt to retrieve column metadata for all objects in your Salesforce account. Depending on the number of objects, this can take a while.
| Name | Type | References | Description |
| TableName | String | The name of the table. This must be specified when retrieving data from Formulas. | |
| ColumnName | String | The name of the column associated with the Formula. | |
| Formula | String | The formula associated with this field. |
Schema file for GrantedByLicense.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| PermissionSetLicenseId | String | ID of the PermissionSetLicense associated with this record. | |
| CustomPermissionId | String | ID of the CustomPermission associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for GuestUserAnomalyEventStore.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| GuestUserAnomalyEventNumber | String | GuestUserAnomalyEvent identification number. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SourceIp | String | IP address from which the request originated. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| SecurityEventData | String | Field containing SecurityEventData information. | |
| Score | Double | Field containing Score information. | |
| Summary | String | Field containing Summary information. | |
| RequestedEntities | String | Field containing RequestedEntities information. | |
| TotalControllerEvents | Int | Field containing TotalControllerEvents information. | |
| UserAgent | String | Field containing UserAgent information. | |
| UserType | String | Type classification for User. | |
| SoqlCommands | String | Field containing SoqlCommands information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for IconDefinition.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| TabDefinitionId | String | ID of the TabDefinition associated with this record. | |
| Url | String | Field containing Url information. | |
| ContentType | String | Type classification for Content. | |
| Theme | String | Field containing Theme information. | |
| Height | Int | Field containing Height information. | |
| Width | Int | Field containing Width information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for IdentityProviderEventStore.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| EventDate | Datetime | Date and time when the event occurred. | |
| IdentityUsed | String | Field containing IdentityUsed information. | |
| SamlEntityUrl | String | Field containing SamlEntityUrl information. | |
| InitiatedBy | String | Field containing InitiatedBy information. | |
| ErrorCode | String | Field containing ErrorCode information. | |
| SsoType | String | Type classification for Sso. | |
| AuthSessionId | String |
AuthSession.Id | ID of the AuthSession associated with this record. |
| AppId | String | ID of the App associated with this record. | |
| HasLogoutUrl | Bool | Indicates whether the record has LogoutUrl. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for IdentityVerificationEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| LoginHistoryId | String |
LoginHistory.Id | ID of the related login history record. |
| VerificationMethod | String | Field containing VerificationMethod information. | |
| Activity | String | Field containing Activity information. | |
| Status | String | Status of the record. | |
| Remarks | String | Field containing Remarks information. | |
| ResourceId | String | ID of the Resource associated with this record. | |
| Policy | String | Field containing Policy information. | |
| EventGroup | String | Field containing EventGroup information. | |
| CountryIso | String | Field containing CountryIso information. | |
| Country | String | Country portion of the address. | |
| Latitude | Double | Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | Used with Latitude to specify the precise geolocation of an address. | |
| City | String | City portion of the address. | |
| PostalCode | String | Postal code portion of the address. | |
| Subdivision | String | Field containing Subdivision information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for IdpEventLog.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| InitiatedBy | String | Field containing InitiatedBy information. | |
| Timestamp | Datetime | Field containing Timestamp information. | |
| ErrorCode | String | Field containing ErrorCode information. | |
| SamlEntityUrl | String | Field containing SamlEntityUrl information. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| AuthSessionId | String |
AuthSession.Id | ID of the AuthSession associated with this record. |
| SsoType | String | Type classification for Sso. | |
| AppId | String | ID of the App associated with this record. | |
| IdentityUsed | String | Field containing IdentityUsed information. | |
| OptionsHasLogoutUrl | Bool | Field containing OptionsHasLogoutUrl information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ImageHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ImageId | String |
Image.Id | ID of the Image associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for IndividualHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| IndividualId | String |
Individual.Id | ID of the data privacy record associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for InstalledMobileApp.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Status | String | Status of the record. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| ConnectedApplicationId | String | ID of the ConnectedApplication associated with this record. | |
| Version | String | Field containing Version information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for InvoiceHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| InvoiceId | String |
Invoice.Id | ID of the Invoice associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for InvoiceLineHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| InvoiceLineId | String |
InvoiceLine.Id | ID of the InvoiceLine associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for KnowledgeableUser.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| TopicId | String |
Topic.Id | ID of the Topic associated with this record. |
| RawRank | Int | Field containing RawRank information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Maintains a historical record of changes made to Lead fields that have history tracking enabled.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the lead history record. | |
| IsDeleted | Bool | Indicates whether the history record has been deleted. | |
| LeadId | String |
Lead.Id | ID of the lead whose field value changed. |
| CreatedById | String |
User.Id | ID of the user who made the change. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Name of the field that was changed. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Previous value of the field before the change. | |
| NewValue | String | New value of the field after the change. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the change was recorded. |
Defines possible statuses for Leads, such as Open, Qualified, or Converted.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the lead status record. | |
| MasterLabel | String | Display label of the lead status, shown in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Position of the status in the picklist order. | |
| IsDefault | Bool | Indicates whether this lead status is the default option. | |
| IsConverted | Bool | Indicates whether selecting this status will mark the lead as converted. | |
| CreatedById | String |
User.Id | ID of the user who created the lead status record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the lead status record. |
| LastModifiedDate | Datetime | Date and time when the lead status record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp for the last modification of the record. | |
| CreatedDate | Datetime | Date and time when the lead status record was created. |
Schema file for LegalEntityHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| LegalEntityId | String |
LegalEntity.Id | ID of the LegalEntity associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for LightningExitByPageMetrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| PageName | String | Field containing PageName information. | |
| RecordCount | Int | Number of Record associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for LightningToggleMetrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| Action | String | Field containing Action information. | |
| RecordCount | Int | Number of Record associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for LightningUriEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| Operation | String | Field containing Operation information. | |
| QueriedEntities | String | Field containing QueriedEntities information. | |
| AppName | String | Field containing AppName information. | |
| ConnectionType | String | Type classification for Connection. | |
| DeviceId | String | ID of the Device associated with this record. | |
| DeviceModel | String | Field containing DeviceModel information. | |
| DevicePlatform | String | Field containing DevicePlatform information. | |
| DeviceSessionId | String | ID of the DeviceSession associated with this record. | |
| Duration | Double | Field containing Duration information. | |
| EffectivePageTime | Double | Field containing EffectivePageTime information. | |
| HasEffectivePageTimeDeviation | Bool | Indicates whether the record has EffectivePageTimeDeviation. | |
| EffectivePageTimeDeviationErrorType | String | Type classification for EffectivePageTimeDeviationError. | |
| EffectivePageTimeDeviationReason | String | Field containing EffectivePageTimeDeviationReason information. | |
| UserAgent | String | Field containing UserAgent information. | |
| OsName | String | Field containing OsName information. | |
| OsVersion | String | Field containing OsVersion information. | |
| PageStartTime | Datetime | Field containing PageStartTime information. | |
| PageUrl | String | Field containing PageUrl information. | |
| PreviousPageAppName | String | Field containing PreviousPageAppName information. | |
| PreviousPageEntityId | String | ID of the PreviousPageEntity associated with this record. | |
| PreviousPageEntityType | String | Type classification for PreviousPageEntity. | |
| PreviousPageUrl | String | Field containing PreviousPageUrl information. | |
| SdkAppType | String | Type classification for SdkApp. | |
| SdkAppVersion | String | Field containing SdkAppVersion information. | |
| SdkVersion | String | Field containing SdkVersion information. | |
| RecordId | String | ID of the Record associated with this record. | |
| UserType | String | Type classification for User. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for LightningUsageByAppTypeMetrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| AppExperience | String | Field containing AppExperience information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for LightningUsageByBrowserMetrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| PageName | String | Field containing PageName information. | |
| Browser | String | Field containing Browser information. | |
| RecordCountEPT | Int | Field containing RecordCountEPT information. | |
| TotalCount | Int | Number of Total associated with this record. | |
| SumEPT | Int | Field containing SumEPT information. | |
| EptBinUnder3 | Int | Field containing EptBinUnder3 information. | |
| EptBin3To5 | Int | Field containing EptBin3To5 information. | |
| EptBin5To8 | Int | Field containing EptBin5To8 information. | |
| EptBin8To10 | Int | Field containing EptBin8To10 information. | |
| EptBinOver10 | Int | Field containing EptBinOver10 information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for LightningUsageByFlexiPageMetrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| FlexiPageType | String | Type classification for FlexiPage. | |
| FlexiPageNameOrId | String | ID of the FlexiPageNameOr associated with this record. | |
| RecordCountEPT | Int | Field containing RecordCountEPT information. | |
| TotalCount | Int | Number of Total associated with this record. | |
| MedianEPT | Int | Field containing MedianEPT information. | |
| SumEPT | Int | Field containing SumEPT information. | |
| EptBinUnder3 | Int | Field containing EptBinUnder3 information. | |
| EptBin3To5 | Int | Field containing EptBin3To5 information. | |
| EptBin5To8 | Int | Field containing EptBin5To8 information. | |
| EptBin8To10 | Int | Field containing EptBin8To10 information. | |
| EptBinOver10 | Int | Field containing EptBinOver10 information. | |
| CoresBinUnder2 | Int | Field containing CoresBinUnder2 information. | |
| CoresBin2To4 | Int | Field containing CoresBin2To4 information. | |
| CoresBin4To8 | Int | Field containing CoresBin4To8 information. | |
| CoresBinOver8 | Int | Field containing CoresBinOver8 information. | |
| DownlinkBinUnder3 | Int | Field containing DownlinkBinUnder3 information. | |
| DownlinkBin3To5 | Int | Field containing DownlinkBin3To5 information. | |
| DownlinkBin5To8 | Int | Field containing DownlinkBin5To8 information. | |
| DownlinkBin8To10 | Int | Field containing DownlinkBin8To10 information. | |
| DownlinkBinOver10 | Int | Field containing DownlinkBinOver10 information. | |
| RttBinUnder50 | Int | Field containing RttBinUnder50 information. | |
| RttBin50To150 | Int | Field containing RttBin50To150 information. | |
| RttBinOver150 | Int | Field containing RttBinOver150 information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for LightningUsageByPageMetrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| PageName | String | Field containing PageName information. | |
| RecordCountEPT | Int | Field containing RecordCountEPT information. | |
| TotalCount | Int | Number of Total associated with this record. | |
| SumEPT | Int | Field containing SumEPT information. | |
| EptBinUnder3 | Int | Field containing EptBinUnder3 information. | |
| EptBin3To5 | Int | Field containing EptBin3To5 information. | |
| EptBin5To8 | Int | Field containing EptBin5To8 information. | |
| EptBin8To10 | Int | Field containing EptBin8To10 information. | |
| EptBinOver10 | Int | Field containing EptBinOver10 information. | |
| CoresBinUnder2 | Int | Field containing CoresBinUnder2 information. | |
| CoresBin2To4 | Int | Field containing CoresBin2To4 information. | |
| CoresBin4To8 | Int | Field containing CoresBin4To8 information. | |
| CoresBinOver8 | Int | Field containing CoresBinOver8 information. | |
| DownlinkBinUnder3 | Int | Field containing DownlinkBinUnder3 information. | |
| DownlinkBin3To5 | Int | Field containing DownlinkBin3To5 information. | |
| DownlinkBin5To8 | Int | Field containing DownlinkBin5To8 information. | |
| DownlinkBin8To10 | Int | Field containing DownlinkBin8To10 information. | |
| DownlinkBinOver10 | Int | Field containing DownlinkBinOver10 information. | |
| RttBinUnder50 | Int | Field containing RttBinUnder50 information. | |
| RttBin50To150 | Int | Field containing RttBin50To150 information. | |
| RttBinOver150 | Int | Field containing RttBinOver150 information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for ListView.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Name | String | Name of the record. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| SobjectType | String | Type classification for Sobject. | |
| IsSoqlCompatible | Bool | Indicates whether the record has the SoqlCompatible characteristic. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ListViewChartInstance.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| ExternalId | String | External ID from another system. | |
| ListViewChartId | String | ID of the ListViewChart associated with this record. | |
| Label | String | Field containing Label information. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| SourceEntity | String | Field containing SourceEntity information. | |
| ListViewContextId | String |
ListView.Id | ID of the ListViewContext associated with this record. |
| ChartType | String | Type classification for Chart. | |
| IsLastViewed | Bool | Indicates whether the record has the LastViewed characteristic. | |
| DataQuery | String | Field containing DataQuery information. | |
| DataQueryWithoutUserFilters | String | Field containing DataQueryWithoutUserFilters information. | |
| IsEditable | Bool | Indicates whether the record has the Editable characteristic. | |
| IsDeletable | Bool | Indicates whether the record has the Deletable characteristic. | |
| GroupingField | String | Field containing GroupingField information. | |
| AggregateField | String | Field containing AggregateField information. | |
| AggregateType | String | Type classification for Aggregate. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for ListViewEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| LoginHistoryId | String |
LoginHistory.Id | ID of the related login history record. |
| RowsProcessed | Double | Field containing RowsProcessed information. | |
| QueriedEntities | String | Field containing QueriedEntities information. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| ListViewId | String |
ListView.Id | ID of the ListView associated with this record. |
| Name | String | Name of the record. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| EventSource | String | Field containing EventSource information. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Scope | String | Field containing Scope information. | |
| OrderBy | String | Field containing OrderBy information. | |
| ColumnHeaders | String | Field containing ColumnHeaders information. | |
| NumberOfColumns | Int | Field containing NumberOfColumns information. | |
| FilterCriteria | String | Field containing FilterCriteria information. | |
| Records | String | Field containing Records information. | |
| AppName | String | Field containing AppName information. | |
| ExecutionIdentifier | String | Field containing ExecutionIdentifier information. | |
| Sequence | Int | Field containing Sequence information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for LocationGroupHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| LocationGroupId | String | ID of the LocationGroup associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for LocationHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| LocationId | String |
Location.Id | ID of the Location associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for LoginAnomalyEventStore.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| LoginAnomalyEventNumber | String | LoginAnomalyEvent identification number. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SourceIp | String | IP address from which the request originated. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| FeatureName | String | Field containing FeatureName information. | |
| FeatureValue | Double | Field containing FeatureValue information. | |
| FeatureContribution | Double | Field containing FeatureContribution information. | |
| SecurityEventData | String | Field containing SecurityEventData information. | |
| Summary | String | Field containing Summary information. | |
| Score | Double | Field containing Score information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for LoginAsEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| UserType | String | Type classification for User. | |
| LoginHistoryId | String | ID of the related login history record. | |
| Application | String | Field containing Application information. | |
| Browser | String | Field containing Browser information. | |
| LoginType | String | Type classification for Login. | |
| Platform | String | Field containing Platform information. | |
| DelegatedUsername | String | Field containing DelegatedUsername information. | |
| DelegatedOrganizationId | String | ID of the DelegatedOrganization associated with this record. | |
| TargetUrl | String | Field containing TargetUrl information. | |
| LoginAsCategory | String | Field containing LoginAsCategory information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for LoginEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| AdditionalInfo | String | Field containing AdditionalInfo information. | |
| ApiType | String | Type classification for Api. | |
| ApiVersion | String | Field containing ApiVersion information. | |
| Application | String | Field containing Application information. | |
| AuthServiceId | String | ID of the AuthService associated with this record. | |
| Browser | String | Field containing Browser information. | |
| HttpMethod | String | Field containing HttpMethod information. | |
| CountryIso | String | Field containing CountryIso information. | |
| ForwardedForIp | String | Field containing ForwardedForIp information. | |
| LoginLatitude | Double | Latitude coordinate for Login address geolocation. | |
| LoginLongitude | Double | Longitude coordinate for Login address geolocation. | |
| Country | String | Country portion of the address. | |
| City | String | City portion of the address. | |
| PostalCode | String | Postal code portion of the address. | |
| Subdivision | String | Field containing Subdivision information. | |
| CipherSuite | String | Field containing CipherSuite information. | |
| ClientVersion | String | Field containing ClientVersion information. | |
| LoginGeoId | String | ID of the LoginGeo associated with this record. | |
| LoginHistoryId | String | ID of the related login history record. | |
| LoginType | String | Type classification for Login. | |
| LoginUrl | String | Field containing LoginUrl information. | |
| Platform | String | Field containing Platform information. | |
| Status | String | Status of the record. | |
| TlsProtocol | String | Field containing TlsProtocol information. | |
| UserType | String | Type classification for User. | |
| AuthMethodReference | String | Field containing AuthMethodReference information. | |
| LoginSubType | String | Type classification for LoginSub. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for LoginGeo.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CountryIso | String | Field containing CountryIso information. | |
| Country | String | Country portion of the address. | |
| Latitude | Double | Used with Longitude to specify the precise geolocation of an address. | |
| Longitude | Double | Used with Latitude to specify the precise geolocation of an address. | |
| City | String | City portion of the address. | |
| PostalCode | String | Postal code portion of the address. | |
| Subdivision | String | Field containing Subdivision information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| LoginTime | Datetime | Field containing LoginTime information. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Logs user login attempts, tracking access details such as IP addresses and login timestamps.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the login history record. | |
| UserId | String |
User.Id | ID of the user associated with the login event. |
| LoginType | String | Type of login used, such as UI, API, or SSO. | |
| SourceIp | String | IP address from which the login was initiated. | |
| LoginUrl | String | URL used for the login request. | |
| AuthenticationServiceId | String | ID of the AuthenticationService associated with this record. | |
| LoginGeoId | String |
LoginGeo.Id | ID of the LoginGeo associated with this record. |
| TlsProtocol | String | Field containing TlsProtocol information. | |
| CipherSuite | String | Field containing CipherSuite information. | |
| OptionsIsGet | Bool | Field containing OptionsIsGet information. | |
| OptionsIsPost | Bool | Field containing OptionsIsPost information. | |
| Browser | String | Browser used during the login session. | |
| Platform | String | Operating system or platform used during the login session. | |
| Status | String | Result of the login attempt, such as Success or Failed. | |
| Application | String | Application or interface used for the login. | |
| ClientVersion | String | Version of the client application used during login. | |
| ApiType | String | Type of API used for login, if applicable. | |
| ApiVersion | String | Version of the API used during the login session. | |
| CountryIso | String | Field containing CountryIso information. | |
| AuthMethodReference | String | Field containing AuthMethodReference information. | |
| LoginSubType | String | Type classification for LoginSub. | |
| ForwardedForIp | String | Field containing ForwardedForIp information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| LoginTime | Datetime | Date and time when the login occurred. |
Schema file for LogoutEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for MacroHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| MacroId | String |
Macro.Id | ID of the Macro associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ManagedContent.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| PrimaryLanguage | String | Field containing PrimaryLanguage information. | |
| ContentKey | String | Field containing ContentKey information. | |
| AuthoredManagedContentSpaceId | String | ID of the AuthoredManagedContentSpace associated with this record. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| ExternalId | String | External ID from another system. | |
| ContentTypeFullyQualifiedName | String | Field containing ContentTypeFullyQualifiedName information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ManagedContentChannel.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Type | String | Type of account or classification. | |
| OptionsIsSearchable | Bool | Field containing OptionsIsSearchable information. | |
| OptionsIsCacheControlPublic | Bool | Field containing OptionsIsCacheControlPublic information. | |
| OptionsIsDomainLocked | Bool | Field containing OptionsIsDomainLocked information. | |
| Domain | String | Field containing Domain information. | |
| DomainHostName | String | Field containing DomainHostName information. | |
| CacheControlMaxAge | String | Field containing CacheControlMaxAge information. | |
| MediaCacheControlMaxAge | String | Field containing MediaCacheControlMaxAge information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ManagedContentSpace.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| Description | String | Text description of the record. | |
| DefaultLanguage | String | Field containing DefaultLanguage information. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ManagedContentVariant.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| VariantType | String | Type classification for Variant. | |
| Language | String | Language of the record or user interface. | |
| UrlName | String | Field containing UrlName information. | |
| ManagedContentId | String | ID of the ManagedContent associated with this record. | |
| IsReady | Bool | Indicates whether the record has the Ready characteristic. | |
| ManagedContentKey | String | Field containing ManagedContentKey information. | |
| ContentTypeFullyQualifiedName | String | Field containing ContentTypeFullyQualifiedName information. | |
| ManagedContentVariantStatus | String | Status of the ManagedContentVariant. | |
| HasLocks | Bool | Indicates whether the record has Locks. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MatchingInformation.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| EmailAddress | String | Field containing EmailAddress information. | |
| ExternalId | String | External ID from another system. | |
| SFDCIdId | String |
Contact.Id | ID of the SFDCId associated with this record. |
| IsPickedAsPreferred | Bool | Indicates whether the record has the PickedAsPreferred characteristic. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| PreferenceUsed | String | Field containing PreferenceUsed information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MatchingRule.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| SobjectType | String | Type classification for Sobject. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| MatchEngine | String | Field containing MatchEngine information. | |
| BooleanFilter | String | Field containing BooleanFilter information. | |
| Description | String | Text description of the record. | |
| RuleStatus | String | Status of the Rule. | |
| SobjectSubtype | String | Type classification for SobjectSub. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MatchingRuleItem.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| MatchingRuleId | String |
MatchingRule.Id | ID of the MatchingRule associated with this record. |
| SortOrder | Int | Field containing SortOrder information. | |
| Field | String | Field containing Field information. | |
| MatchingMethod | String | Field containing MatchingMethod information. | |
| BlankValueBehavior | String | Field containing BlankValueBehavior information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MessagingEndUserHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| MessagingEndUserId | String | ID of the MessagingEndUser associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MessagingSessionHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| MessagingSessionId | String | ID of the MessagingSession associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MLModel.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| PredictionDefinitionId | String | ID of the PredictionDefinition associated with this record. | |
| ApprovalStatus | String | Status of the Approval. | |
| ScoringStatus | String | Status of the Scoring. | |
| ModelType | String | Type classification for Model. | |
| TrainingStartTime | Datetime | Field containing TrainingStartTime information. | |
| TrainingEndTime | Datetime | Field containing TrainingEndTime information. | |
| Dataset | String | Field containing Dataset information. | |
| RecommendationDefinitionId | String | ID of the RecommendationDefinition associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MLModelFactor.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ModelId | String |
MLModel.Id | ID of the Model associated with this record. |
| Type | String | Type of account or classification. | |
| Weight | Double | Field containing Weight information. | |
| Importance | Double | Field containing Importance information. | |
| Correlation | Double | Field containing Correlation information. | |
| FactorType | String | Type classification for Factor. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MLModelFactorComponent.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ModelFactorId | String | ID of the ModelFactor associated with this record. | |
| ModelId | String |
MLModel.Id | ID of the Model associated with this record. |
| LeftHandDerivedField | String | Field containing LeftHandDerivedField information. | |
| Operator | String | Field containing Operator information. | |
| RightHandDerivedField | String | Field containing RightHandDerivedField information. | |
| Value | String | Field containing Value information. | |
| SortOrder | Int | Field containing SortOrder information. | |
| FeatureType | String | Type classification for Feature. | |
| FeatureValue | String | Field containing FeatureValue information. | |
| FactorLabelKey | String | Field containing FactorLabelKey information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MLModelMetric.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ModelId | String |
MLModel.Id | ID of the Model associated with this record. |
| MetricType | String | Type classification for Metric. | |
| BasicMetricValue | Double | Field containing BasicMetricValue information. | |
| RowCount | Int | Number of Row associated with this record. | |
| StartTime | Datetime | Field containing StartTime information. | |
| EndTime | Datetime | Field containing EndTime information. | |
| Span | String | Field containing Span information. | |
| GraphType | String | Type classification for Graph. | |
| DataSetType | String | Type classification for DataSet. | |
| ComplexMetricValue | String | Field containing ComplexMetricValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MLPredictionDefinition.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ApplicationId | String | ID of the Application associated with this record. | |
| Type | String | Type of account or classification. | |
| Status | String | Status of the record. | |
| PredictionField | String | Field containing PredictionField information. | |
| PushbackField | String | Field containing PushbackField information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MLRecommendationDefinition.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ApplicationId | String | ID of the Application associated with this record. | |
| Status | String | Status of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for MsgChannelAvailability.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| MessagingChannelId | String | ID of the MessagingChannel associated with this record. | |
| Type | String | Type of account or classification. | |
| CountryCode | String | Field containing CountryCode information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for NamedCredential.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Endpoint | String | Field containing Endpoint information. | |
| PrincipalType | String | Type classification for Principal. | |
| CalloutOptionsGenerateAuthorizationHeader | Bool | Field containing CalloutOptionsGenerateAuthorizationHeader information. | |
| CalloutOptionsAllowMergeFieldsInHeader | Bool | Field containing CalloutOptionsAllowMergeFieldsInHeader information. | |
| CalloutOptionsAllowMergeFieldsInBody | Bool | Field containing CalloutOptionsAllowMergeFieldsInBody information. | |
| AuthProviderId | String |
AuthProvider.Id | ID of the AuthProvider associated with this record. |
| Description | String | Text description of the record. | |
| JwtIssuer | String | Field containing JwtIssuer information. | |
| JwtFormulaSubject | String | Field containing JwtFormulaSubject information. | |
| JwtTextSubject | String | Field containing JwtTextSubject information. | |
| JwtValidityPeriodSeconds | Int | Field containing JwtValidityPeriodSeconds information. | |
| JwtAudience | String | Field containing JwtAudience information. | |
| AuthTokenEndpointUrl | String | Field containing AuthTokenEndpointUrl information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OauthToken.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| AccessToken | String | Field containing AccessToken information. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| RequestToken | String | Field containing RequestToken information. | |
| AppName | String | Field containing AppName information. | |
| LastUsedDate | Datetime | Date associated with LastUsed. | |
| UseCount | Int | Number of Use associated with this record. | |
| DeleteToken | String | Field containing DeleteToken information. | |
| AppMenuItemId | String |
AppMenuItem.Id | ID of the AppMenuItem associated with this record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ObjectUserTerritory2View.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| ObjectId | String | ID of the Object associated with this record. | |
| ObjectIdType | String | Specifies the type of the 'ObjectId' polymorphic field to use in the statement. | |
| ObjectIdExternalFieldName | String | Specifies the external field name of the 'ObjectId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Territory2Id | String |
Territory2.Id | ID of the Territory2 associated with this record. |
| UserId | String |
User.Id | ID of the User associated with this record. |
| RoleInTerritory2 | String | Field containing RoleInTerritory2 information. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Maintains a historical record of changes made to opportunity fields that have history tracking enabled.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the opportunity field history record. | |
| IsDeleted | Bool | Indicates whether the field history record has been deleted. | |
| OpportunityId | String |
Opportunity.Id | Reference to the opportunity whose field change is being tracked. |
| CreatedById | String |
User.Id | ID of the user who made the field change. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | API name of the field that was changed on the opportunity. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Previous value of the field before the change. | |
| NewValue | String | Updated value of the field after the change. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the field change was recorded. |
Tracks stage changes and progress updates for opportunity records.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the opportunity history record. | |
| OpportunityId | String |
Opportunity.Id | Reference to the opportunity associated with this history entry. |
| CreatedById | String |
User.Id | ID of the user who made the update recorded in this history. |
| StageName | String | Opportunity stage at the time of the historical record. | |
| Amount | Decimal | Opportunity amount value at the time of the historical record. | |
| ExpectedRevenue | Decimal | Expected revenue value at the time of the historical record. | |
| CloseDate | Date | Expected close date at the time of the historical record. | |
| Probability | Double | Probability percentage at the time of the historical record. | |
| ForecastCategory | String | Forecast category associated with the opportunity during this historical entry. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| IsDeleted | Bool | Indicates whether the opportunity history record has been deleted. | |
| PrevAmount | Decimal | Field containing PrevAmount information. | |
| PrevCloseDate | Date | Date associated with PrevClose. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System timestamp used for record tracking and replication. | |
| CreatedDate | Datetime | Date and time when the opportunity update was recorded. |
Defines the stages of an opportunity in the sales process, such as Prospecting, Negotiation, or Closed Won.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the opportunity stage record. | |
| MasterLabel | String | Display label for the opportunity stage. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| IsActive | Bool | Indicates whether the opportunity stage is currently active. | |
| SortOrder | Int | Order in which the stage appears in the stage picklist. | |
| IsClosed | Bool | Indicates whether the opportunity stage is considered closed. | |
| IsWon | Bool | Indicates whether the opportunity stage is considered won. | |
| ForecastCategory | String | Internal forecast category associated with this stage. | |
| ForecastCategoryName | String | Display name of the forecast category associated with this stage. | |
| DefaultProbability | Double | Default probability percentage assigned to this stage. | |
| Description | String | Optional description or notes for the opportunity stage. | |
| CreatedById | String |
User.Id | ID of the user who created the opportunity stage record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the opportunity stage record. |
| LastModifiedDate | Datetime | Date and time when the opportunity stage record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System timestamp for the most recent update to the opportunity stage record. | |
| CreatedDate | Datetime | Date and time when the opportunity stage was created. |
Schema file for OrderAdjustmentGroupHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderAdjustmentGroupId | String | ID of the OrderAdjustmentGroup associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderChangeLog.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| RelatedOrderId | String |
Order.Id | ID of the RelatedOrder associated with this record. |
| RelatedLineId | String | ID of the RelatedLine associated with this record. | |
| RelatedLineIdType | String | Specifies the type of the 'RelatedLineId' polymorphic field to use in the statement. | |
| RelatedLineIdExternalFieldName | String | Specifies the external field name of the 'RelatedLineId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ChangeOrderId | String |
Order.Id | ID of the ChangeOrder associated with this record. |
| ChangeLineId | String | ID of the ChangeLine associated with this record. | |
| ChangeLineIdType | String | Specifies the type of the 'ChangeLineId' polymorphic field to use in the statement. | |
| ChangeLineIdExternalFieldName | String | Specifies the external field name of the 'ChangeLineId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ChangeRequest | String | Field containing ChangeRequest information. | |
| Status | String | Status of the record. | |
| ChangeType | String | Type classification for Change. | |
| ChangeLineType | String | Type classification for ChangeLine. | |
| ChangeSummary | String | Field containing ChangeSummary information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderChangeLogHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderChangeLogId | String | ID of the OrderChangeLog associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderDeliveryGroupHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderDeliveryGroupId | String | ID of the OrderDeliveryGroup associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderDeliveryMethodHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderDeliveryMethodId | String | ID of the OrderDeliveryMethod associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderId | String |
Order.Id | ID of the Order associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderItemAdjustmentLineItemHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderItemAdjustmentLineItemId | String | ID of the OrderItemAdjustmentLineItem associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderItemHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderItemId | String |
OrderItem.Id | ID of the OrderItem associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderItemRelationshipHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderItemRelationshipId | String | ID of the OrderItemRelationship associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderItemTaxLineItemHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| OrderItemTaxLineItemId | String | ID of the OrderItemTaxLineItem associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderItemType.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Field containing SortOrder information. | |
| IsDefault | Bool | Indicates whether the record has the Default characteristic. | |
| TypeCode | String | Field containing TypeCode information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OrderStatus.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Field containing SortOrder information. | |
| IsDefault | Bool | Indicates whether the record has the Default characteristic. | |
| StatusCode | String | Field containing StatusCode information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for OwnerChangeOptionInfo.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| EntityDefinitionId | String | ID of the EntityDefinition associated with this record. | |
| Name | String | Name of the record. | |
| Label | String | Field containing Label information. | |
| IsEditable | Bool | Indicates whether the record has the Editable characteristic. | |
| DefaultValue | Bool | Field containing DefaultValue information. | |
| ParentId | String | ID of the parent object in the hierarchy. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for PackageLicense.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Status | String | Status of the record. | |
| IsProvisioned | Bool | Indicates whether the record has the Provisioned characteristic. | |
| AllowedLicenses | Int | Field containing AllowedLicenses information. | |
| UsedLicenses | Int | Field containing UsedLicenses information. | |
| IsAvailableForIntegrations | Bool | Indicates whether the record has the AvailableForIntegrations characteristic. | |
| ExpirationDate | Datetime | Date associated with Expiration. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for Participant.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ParticipantAppType | String | Type classification for ParticipantApp. | |
| ParticipantRole | String | Field containing ParticipantRole information. | |
| ParticipantSubject | String | Field containing ParticipantSubject information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Defines roles assigned to partners in partner relationships, such as Distributor or Reseller.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the partner role. | |
| MasterLabel | String | Display name of the partner role. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Numeric value indicating the order in which this role appears in lists. | |
| ReverseRole | String | Name of the reciprocal role used when creating a reverse partner relationship. | |
| CreatedById | String |
User.Id | ID of the user who created the partner role. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the partner role. |
| LastModifiedDate | Datetime | Date and time when the partner role was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System timestamp for the most recent update to the partner role record. | |
| CreatedDate | Datetime | Date and time when the partner role was created. |
Schema file for PartyConsentHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| PartyConsentId | String |
PartyConsent.Id | ID of the PartyConsent associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for PaymentMethod.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| ImplementorType | String | Type classification for Implementor. | |
| AccountId | String |
Account.Id | ID of the Account associated with this record. |
| NickName | String | Field containing NickName information. | |
| CompanyName | String | Field containing CompanyName information. | |
| Status | String | Status of the record. | |
| Comments | String | Field containing Comments information. | |
| IsAutoPayEnabled | Bool | Indicates whether the record has the AutoPayEnabled characteristic. | |
| PaymentMethodStreet | String | Street address for PaymentMethod purposes. | |
| PaymentMethodCity | String | City for PaymentMethod address. | |
| PaymentMethodState | String | State or province for PaymentMethod address. | |
| PaymentMethodPostalCode | String | Postal code for PaymentMethod address. | |
| PaymentMethodCountry | String | Country for PaymentMethod address. | |
| PaymentMethodLatitude | Double | Latitude coordinate for PaymentMethod address geolocation. | |
| PaymentMethodLongitude | Double | Longitude coordinate for PaymentMethod address geolocation. | |
| PaymentMethodGeocodeAccuracy | String | Accuracy level of the geocode for the PaymentMethod address. | |
| PaymentMethodType | String | Type classification for PaymentMethod. | |
| PaymentMethodSubType | String | Type classification for PaymentMethodSub. | |
| PaymentMethodDetails | String | Field containing PaymentMethodDetails information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stores time period records used in forecasting and financial reporting.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier of the fiscal period. | |
| FiscalYearSettingsId | String | ID referencing the associated fiscal year settings. | |
| Type | String | Type of period, such as Quarter or Month. | |
| StartDate | Date | Start date of the fiscal period. | |
| EndDate | Date | End date of the fiscal period. | |
| IsForecastPeriod | Bool | Indicates whether the period is used for forecasting purposes. | |
| QuarterLabel | String | Display label for the quarter in which this period falls. | |
| PeriodLabel | String | Display label for this fiscal period. | |
| Number | Int | Numeric value representing the sequence of the period within the fiscal year. | |
| FullyQualifiedLabel | String | Field containing FullyQualifiedLabel information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System timestamp for the most recent update to the fiscal period record. |
Schema file for PermissionSetEventStore.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| LoginHistoryId | String |
LoginHistory.Id | ID of the related login history record. |
| EventSource | String | Field containing EventSource information. | |
| Operation | String | Field containing Operation information. | |
| ParentIdList | String | Field containing ParentIdList information. | |
| ParentNameList | String | Field containing ParentNameList information. | |
| PermissionType | String | Type classification for Permission. | |
| PermissionList | String | Field containing PermissionList information. | |
| HasExternalUsers | Bool | Indicates whether the record has ExternalUsers. | |
| ImpactedUserIds | String | Field containing ImpactedUserIds information. | |
| UserCount | String | Number of User associated with this record. | |
| PermissionExpiration | Datetime | Field containing PermissionExpiration information. | |
| PermissionExpirationList | String | Field containing PermissionExpirationList information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Tracks licenses for permission sets, defining how many users can be assigned to them.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the permission set license record. | |
| IsDeleted | Bool | Indicates whether the permission set license has been marked as deleted. | |
| DeveloperName | String | API name of the permission set license, typically used by developers to reference the license programmatically. | |
| Language | String | Language code used for the primary display language of the permission set license. | |
| MasterLabel | String | User-friendly name of the permission set license displayed in the Salesforce UI. | |
| CreatedById | String |
User.Id | Identifier of the user who created the permission set license record. |
| LastModifiedDate | Datetime | Date and time when the permission set license was last updated. | |
| LastModifiedById | String |
User.Id | Identifier of the user who last modified the permission set license record. |
| PermissionSetLicenseKey | String | Unique key associated with the permission set license, used internally for license identification. | |
| TotalLicenses | Int | Total number of licenses available under this permission set license. | |
| Status | String | Current status of the permission set license, such as Active or Inactive. | |
| ExpirationDate | Date | Date when the permission set license is set to expire. | |
| MaximumPermissionsEmailSingle | Bool | Indicates whether users with this license can send individual emails from Salesforce. | |
| MaximumPermissionsEmailMass | Bool | Indicates whether users with this license can send mass emails to multiple recipients. | |
| MaximumPermissionsEditTask | Bool | Grants the ability to edit task records within Salesforce. | |
| MaximumPermissionsEditEvent | Bool | Grants the ability to edit calendar events in Salesforce. | |
| MaximumPermissionsExportReport | Bool | Allows exporting of report data to external files such as CSV. | |
| MaximumPermissionsImportPersonal | Bool | Allows users to import personal contacts into Salesforce. | |
| MaximumPermissionsDataExport | Bool | Field containing MaximumPermissionsDataExport information. | |
| MaximumPermissionsManageUsers | Bool | Grants full access to manage users, roles, and profiles within the organization. | |
| MaximumPermissionsEditPublicFilters | Bool | Field containing MaximumPermissionsEditPublicFilters information. | |
| MaximumPermissionsEditPublicTemplates | Bool | Allows editing of publicly shared email templates. | |
| MaximumPermissionsModifyAllData | Bool | Provides full access to all data in the organization, overriding sharing settings. | |
| MaximumPermissionsEditBillingInfo | Bool | Field containing MaximumPermissionsEditBillingInfo information. | |
| MaximumPermissionsManageCases | Bool | Allows users to manage support cases, including creation, assignment, and resolution. | |
| MaximumPermissionsMassInlineEdit | Bool | Field containing MaximumPermissionsMassInlineEdit information. | |
| MaximumPermissionsEditKnowledge | Bool | Enables editing of knowledge articles within Salesforce Knowledge. | |
| MaximumPermissionsManageKnowledge | Bool | Grants management permissions over Salesforce Knowledge, including settings and article types. | |
| MaximumPermissionsManageSolutions | Bool | Allows management of published solutions in Salesforce, including creation and editing. | |
| MaximumPermissionsCustomizeApplication | Bool | Grants the ability to customize the application, such as modifying page layouts and tabs. | |
| MaximumPermissionsEditReadonlyFields | Bool | Allows editing of fields that are normally read-only, typically through API or automation. | |
| MaximumPermissionsRunReports | Bool | Enables users to run saved reports within Salesforce. | |
| MaximumPermissionsViewSetup | Bool | Grants access to the Setup area, including configuration and system settings. | |
| MaximumPermissionsTransferAnyEntity | Bool | Allows transferring ownership of any record, regardless of current ownership. | |
| MaximumPermissionsNewReportBuilder | Bool | Provides access to the Lightning Report Builder for creating and customizing reports. | |
| MaximumPermissionsActivateContract | Bool | Grants the ability to activate contracts within the system. | |
| MaximumPermissionsActivateOrder | Bool | Field containing MaximumPermissionsActivateOrder information. | |
| MaximumPermissionsImportLeads | Bool | Allows users to import lead records into Salesforce using data import tools. | |
| MaximumPermissionsManageLeads | Bool | Grants full control over lead records, including assignment, conversion, and deletion. | |
| MaximumPermissionsTransferAnyLead | Bool | Allows transferring ownership of any lead, regardless of the current owner. | |
| MaximumPermissionsViewAllData | Bool | Provides read access to all data in the organization, regardless of sharing rules. | |
| MaximumPermissionsEditPublicDocuments | Bool | Grants the ability to manage publicly shared documents stored in Salesforce. | |
| MaximumPermissionsViewEncryptedData | Bool | Field containing MaximumPermissionsViewEncryptedData information. | |
| MaximumPermissionsEditBrandTemplates | Bool | Allows editing of letterhead templates used in email communications. | |
| MaximumPermissionsEditHtmlTemplates | Bool | Enables editing of HTML-based email templates. | |
| MaximumPermissionsChatterInternalUser | Bool | Grants access to Chatter for internal collaboration within the organization. | |
| MaximumPermissionsManageEncryptionKeys | Bool | Field containing MaximumPermissionsManageEncryptionKeys information. | |
| MaximumPermissionsDeleteActivatedContract | Bool | Grants the ability to delete contracts that have already been activated. | |
| MaximumPermissionsChatterInviteExternalUsers | Bool | Allows users to send invitations to external participants to join Chatter groups. | |
| MaximumPermissionsSendSitRequests | Bool | Enables sending stay-in-touch requests to update contact information. | |
| MaximumPermissionsApiUserOnly | Bool | Field containing MaximumPermissionsApiUserOnly information. | |
| MaximumPermissionsManageRemoteAccess | Bool | Grants access to manage connected apps and remote access settings. | |
| MaximumPermissionsCanUseNewDashboardBuilder | Bool | Allows use of the drag-and-drop interface for building dashboards. | |
| MaximumPermissionsManageCategories | Bool | Grants permission to manage category groups and data categories in Salesforce Knowledge. | |
| MaximumPermissionsConvertLeads | Bool | Allows users to convert qualified leads into accounts, contacts, and opportunities. | |
| MaximumPermissionsPasswordNeverExpires | Bool | Prevents a user's password from expiring, overriding standard expiration policies. | |
| MaximumPermissionsUseTeamReassignWizards | Bool | Grants access to team reassignment wizards for accounts, opportunities, and cases. | |
| MaximumPermissionsEditActivatedOrders | Bool | Field containing MaximumPermissionsEditActivatedOrders information. | |
| MaximumPermissionsInstallPackaging | Bool | Allows downloading of packages from the Salesforce AppExchange. | |
| MaximumPermissionsPublishPackaging | Bool | Grants permission to upload and publish packages to the AppExchange. | |
| MaximumPermissionsChatterOwnGroups | Bool | Enables users to create and manage their own Chatter groups. | |
| MaximumPermissionsEditOppLineItemUnitPrice | Bool | Allows editing of the unit price for opportunity product line items. | |
| MaximumPermissionsManageTerritories | Bool | Field containing MaximumPermissionsManageTerritories information. | |
| MaximumPermissionsCreatePackaging | Bool | Grants the ability to create new managed or unmanaged packages for distribution. | |
| MaximumPermissionsBulkApiHardDelete | Bool | Enables hard deletion of records via the Bulk API, bypassing the Recycle Bin. | |
| MaximumPermissionsSolutionImport | Bool | Allows importing of solution records into Salesforce from external files. | |
| MaximumPermissionsManageCallCenters | Bool | Grants management access to call center definitions and related settings. | |
| MaximumPermissionsManageSynonyms | Bool | Grants access to define and manage search synonyms for improved search results. | |
| MaximumPermissionsViewContent | Bool | Allows users to view Salesforce Content files within portals or communities. | |
| MaximumPermissionsManageEmailClientConfig | Bool | Grants permission to configure and manage email client integration settings. | |
| MaximumPermissionsEnableNotifications | Bool | Allows sending of outbound messages as part of workflow or process automation. | |
| MaximumPermissionsIsSsoEnabled | Bool | Field containing MaximumPermissionsIsSsoEnabled information. | |
| MaximumPermissionsManageDataIntegrations | Bool | Grants permissions to manage external data integrations and connections. | |
| MaximumPermissionsDistributeFromPersWksp | Bool | Field containing MaximumPermissionsDistributeFromPersWksp information. | |
| MaximumPermissionsViewDataCategories | Bool | Allows users to view data category groups and their hierarchy. | |
| MaximumPermissionsManageDataCategories | Bool | Enables management of data category group structure and assignments. | |
| MaximumPermissionsAuthorApex | Bool | Grants the ability to write, edit, and save Apex classes and triggers in Salesforce. | |
| MaximumPermissionsManageMobile | Bool | Allows management of Salesforce mobile app settings and configurations. | |
| MaximumPermissionsApiEnabled | Bool | Grants access to Salesforce's API, allowing integration with external systems. | |
| MaximumPermissionsManageCustomReportTypes | Bool | Allows creation and management of custom report types for advanced reporting needs. | |
| MaximumPermissionsEditCaseComments | Bool | Grants permission to edit comments on support case records. | |
| MaximumPermissionsTransferAnyCase | Bool | Allows users to transfer ownership of any case, regardless of the current owner. | |
| MaximumPermissionsContentAdministrator | Bool | Grants full administrative rights to manage Salesforce Customer Relationship Management (CRM) Content. | |
| MaximumPermissionsCreateWorkspaces | Bool | Allows creation of content libraries, also known as workspaces, for organizing files. | |
| MaximumPermissionsManageContentPermissions | Bool | Grants the ability to set and manage user access permissions on content items. | |
| MaximumPermissionsManageContentProperties | Bool | Enables customization of content properties such as custom fields and metadata. | |
| MaximumPermissionsManageContentTypes | Bool | Allows users to define and manage different content types within libraries. | |
| MaximumPermissionsManageExchangeConfig | Bool | Field containing MaximumPermissionsManageExchangeConfig information. | |
| MaximumPermissionsManageAnalyticSnapshots | Bool | Grants access to create and manage analytic snapshots for tracking report data over time. | |
| MaximumPermissionsScheduleReports | Bool | Allows users to schedule automated delivery of reports via email. | |
| MaximumPermissionsManageBusinessHourHolidays | Bool | Grants permission to configure business hours and holiday settings used in case management. | |
| MaximumPermissionsManageEntitlements | Bool | Field containing MaximumPermissionsManageEntitlements information. | |
| MaximumPermissionsManageDynamicDashboards | Bool | Allows users to create and manage dashboards with dynamic data visibility based on the viewer. | |
| MaximumPermissionsCustomSidebarOnAllPages | Bool | Enables display of custom sidebar components across all Salesforce pages. | |
| MaximumPermissionsManageInteraction | Bool | Grants permission to manage flows created using Flow Builder (formerly Visual Workflow). | |
| MaximumPermissionsViewMyTeamsDashboards | Bool | Allows viewing of dashboards shared specifically with the user's team. | |
| MaximumPermissionsModerateChatter | Bool | Grants the ability to moderate Chatter posts and comments, including deleting content. | |
| MaximumPermissionsResetPasswords | Bool | Allows users to reset passwords and unlock user accounts. | |
| MaximumPermissionsFlowUFLRequired | Bool | Indicates whether users must have the Flow User Feature License to run flows. | |
| MaximumPermissionsCanInsertFeedSystemFields | Bool | Grants the ability to insert system fields, such as timestamps or IDs, into Chatter feeds. | |
| MaximumPermissionsActivitiesAccess | Bool | Field containing MaximumPermissionsActivitiesAccess information. | |
| MaximumPermissionsManageKnowledgeImportExport | Bool | Allows import and export of Salesforce Knowledge articles for bulk updates. | |
| MaximumPermissionsUseInboxSchedulingOnBehalfOf | Bool | Field containing MaximumPermissionsUseInboxSchedulingOnBehalfOf information. | |
| MaximumPermissionsEmailTemplateManagement | Bool | Grants permission to create, edit, and manage email templates. | |
| MaximumPermissionsEmailAdministration | Bool | Allows configuration and management of email settings and deliverability options. | |
| MaximumPermissionsDeleteEventMonitoringData | Bool | Field containing MaximumPermissionsDeleteEventMonitoringData information. | |
| MaximumPermissionsManageChatterMessages | Bool | Grants the ability to view and delete private Chatter messages between users. | |
| MaximumPermissionsAllowEmailIC | Bool | Field containing MaximumPermissionsAllowEmailIC information. | |
| MaximumPermissionsChatterFileLink | Bool | Field containing MaximumPermissionsChatterFileLink information. | |
| MaximumPermissionsForceTwoFactor | Bool | Requires two-factor authentication for users accessing the UI. | |
| MaximumPermissionsViewEventLogFiles | Bool | Field containing MaximumPermissionsViewEventLogFiles information. | |
| MaximumPermissionsManageNetworks | Bool | Grants access to create and configure Salesforce Communities (Experience Cloud sites). | |
| MaximumPermissionsManageAuthProviders | Bool | Allows management of authentication providers used for SSO and third-party logins. | |
| MaximumPermissionsRunFlow | Bool | Allows users to execute flows from the UI or automation tools. | |
| MaximumPermissionsCreateCustomizeDashboards | Bool | Field containing MaximumPermissionsCreateCustomizeDashboards information. | |
| MaximumPermissionsCreateDashboardFolders | Bool | Field containing MaximumPermissionsCreateDashboardFolders information. | |
| MaximumPermissionsViewPublicDashboards | Bool | Field containing MaximumPermissionsViewPublicDashboards information. | |
| MaximumPermissionsManageDashbdsInPubFolders | Bool | Field containing MaximumPermissionsManageDashbdsInPubFolders information. | |
| MaximumPermissionsCreateCustomizeReports | Bool | Field containing MaximumPermissionsCreateCustomizeReports information. | |
| MaximumPermissionsCreateReportFolders | Bool | Field containing MaximumPermissionsCreateReportFolders information. | |
| MaximumPermissionsViewPublicReports | Bool | Field containing MaximumPermissionsViewPublicReports information. | |
| MaximumPermissionsManageReportsInPubFolders | Bool | Field containing MaximumPermissionsManageReportsInPubFolders information. | |
| MaximumPermissionsEditMyDashboards | Bool | Field containing MaximumPermissionsEditMyDashboards information. | |
| MaximumPermissionsEditMyReports | Bool | Field containing MaximumPermissionsEditMyReports information. | |
| MaximumPermissionsDeleteFieldHistoryArchive | Bool | Field containing MaximumPermissionsDeleteFieldHistoryArchive information. | |
| MaximumPermissionsViewAllUsers | Bool | Grants visibility into all user records in the system. | |
| MaximumPermissionsAllowUniversalSearch | Bool | Allows use of global search functionality to access a broad range of records. | |
| MaximumPermissionsConnectOrgToEnvironmentHub | Bool | Enables the organization to be linked to the Environment Hub for managing multiple orgs. | |
| MaximumPermissionsWorkCalibrationUser | Bool | Field containing MaximumPermissionsWorkCalibrationUser information. | |
| MaximumPermissionsCreateCustomizeFilters | Bool | Field containing MaximumPermissionsCreateCustomizeFilters information. | |
| MaximumPermissionsWorkDotComUserPerm | Bool | Field containing MaximumPermissionsWorkDotComUserPerm information. | |
| MaximumPermissionsContentHubUser | Bool | Field containing MaximumPermissionsContentHubUser information. | |
| MaximumPermissionsGovernNetworks | Bool | Field containing MaximumPermissionsGovernNetworks information. | |
| MaximumPermissionsSalesConsole | Bool | Grants access to the Sales Console app, designed for high-productivity sales workflows. | |
| MaximumPermissionsTwoFactorApi | Bool | Requires two-factor authentication for users accessing Salesforce via the API. | |
| MaximumPermissionsDeleteTopics | Bool | Grants permission to delete Chatter topics from posts or records. | |
| MaximumPermissionsEditTopics | Bool | Allows editing of existing Chatter topics. | |
| MaximumPermissionsCreateTopics | Bool | Grants permission to create new Chatter topics for organizing discussions and content. | |
| MaximumPermissionsAssignTopics | Bool | Allows users to assign Chatter topics to posts or records. | |
| MaximumPermissionsIdentityEnabled | Bool | Grants access to Salesforce Identity features, including single sign-on and identity services. | |
| MaximumPermissionsIdentityConnect | Bool | Allows integration with Identity Connect to sync user data between Active Directory and Salesforce. | |
| MaximumPermissionsAllowViewKnowledge | Bool | Grants read access to Salesforce Knowledge articles based on user permissions. | |
| MaximumPermissionsContentWorkspaces | Bool | Field containing MaximumPermissionsContentWorkspaces information. | |
| MaximumPermissionsManageSearchPromotionRules | Bool | Field containing MaximumPermissionsManageSearchPromotionRules information. | |
| MaximumPermissionsCustomMobileAppsAccess | Bool | Field containing MaximumPermissionsCustomMobileAppsAccess information. | |
| MaximumPermissionsViewHelpLink | Bool | Field containing MaximumPermissionsViewHelpLink information. | |
| MaximumPermissionsManageProfilesPermissionsets | Bool | Field containing MaximumPermissionsManageProfilesPermissionsets information. | |
| MaximumPermissionsAssignPermissionSets | Bool | Field containing MaximumPermissionsAssignPermissionSets information. | |
| MaximumPermissionsManageRoles | Bool | Field containing MaximumPermissionsManageRoles information. | |
| MaximumPermissionsManageIpAddresses | Bool | Field containing MaximumPermissionsManageIpAddresses information. | |
| MaximumPermissionsManageSharing | Bool | Field containing MaximumPermissionsManageSharing information. | |
| MaximumPermissionsManageInternalUsers | Bool | Field containing MaximumPermissionsManageInternalUsers information. | |
| MaximumPermissionsManagePasswordPolicies | Bool | Field containing MaximumPermissionsManagePasswordPolicies information. | |
| MaximumPermissionsManageLoginAccessPolicies | Bool | Field containing MaximumPermissionsManageLoginAccessPolicies information. | |
| MaximumPermissionsViewPlatformEvents | Bool | Field containing MaximumPermissionsViewPlatformEvents information. | |
| MaximumPermissionsManageCustomPermissions | Bool | Field containing MaximumPermissionsManageCustomPermissions information. | |
| MaximumPermissionsCanVerifyComment | Bool | Field containing MaximumPermissionsCanVerifyComment information. | |
| MaximumPermissionsManageUnlistedGroups | Bool | Field containing MaximumPermissionsManageUnlistedGroups information. | |
| MaximumPermissionsStdAutomaticActivityCapture | Bool | Field containing MaximumPermissionsStdAutomaticActivityCapture information. | |
| MaximumPermissionsFreezeUsers | Bool | Field containing MaximumPermissionsFreezeUsers information. | |
| MaximumPermissionsInsightsAppDashboardEditor | Bool | Field containing MaximumPermissionsInsightsAppDashboardEditor information. | |
| MaximumPermissionsManageTwoFactor | Bool | Field containing MaximumPermissionsManageTwoFactor information. | |
| MaximumPermissionsInsightsAppUser | Bool | Field containing MaximumPermissionsInsightsAppUser information. | |
| MaximumPermissionsInsightsAppAdmin | Bool | Field containing MaximumPermissionsInsightsAppAdmin information. | |
| MaximumPermissionsInsightsAppEltEditor | Bool | Field containing MaximumPermissionsInsightsAppEltEditor information. | |
| MaximumPermissionsInsightsAppUploadUser | Bool | Field containing MaximumPermissionsInsightsAppUploadUser information. | |
| MaximumPermissionsInsightsCreateApplication | Bool | Field containing MaximumPermissionsInsightsCreateApplication information. | |
| MaximumPermissionsLightningExperienceUser | Bool | Field containing MaximumPermissionsLightningExperienceUser information. | |
| MaximumPermissionsViewDataLeakageEvents | Bool | Field containing MaximumPermissionsViewDataLeakageEvents information. | |
| MaximumPermissionsConfigCustomRecs | Bool | Field containing MaximumPermissionsConfigCustomRecs information. | |
| MaximumPermissionsSubmitMacrosAllowed | Bool | Field containing MaximumPermissionsSubmitMacrosAllowed information. | |
| MaximumPermissionsBulkMacrosAllowed | Bool | Field containing MaximumPermissionsBulkMacrosAllowed information. | |
| MaximumPermissionsShareInternalArticles | Bool | Field containing MaximumPermissionsShareInternalArticles information. | |
| MaximumPermissionsManageSessionPermissionSets | Bool | Field containing MaximumPermissionsManageSessionPermissionSets information. | |
| MaximumPermissionsManageTemplatedApp | Bool | Field containing MaximumPermissionsManageTemplatedApp information. | |
| MaximumPermissionsUseTemplatedApp | Bool | Field containing MaximumPermissionsUseTemplatedApp information. | |
| MaximumPermissionsSendAnnouncementEmails | Bool | Field containing MaximumPermissionsSendAnnouncementEmails information. | |
| MaximumPermissionsChatterEditOwnPost | Bool | Field containing MaximumPermissionsChatterEditOwnPost information. | |
| MaximumPermissionsChatterEditOwnRecordPost | Bool | Field containing MaximumPermissionsChatterEditOwnRecordPost information. | |
| MaximumPermissionsWaveTabularDownload | Bool | Field containing MaximumPermissionsWaveTabularDownload information. | |
| MaximumPermissionsWaveCommunityUser | Bool | Field containing MaximumPermissionsWaveCommunityUser information. | |
| MaximumPermissionsAutomaticActivityCapture | Bool | Field containing MaximumPermissionsAutomaticActivityCapture information. | |
| MaximumPermissionsImportCustomObjects | Bool | Field containing MaximumPermissionsImportCustomObjects information. | |
| MaximumPermissionsSalesforceIQInbox | Bool | Field containing MaximumPermissionsSalesforceIQInbox information. | |
| MaximumPermissionsDelegatedTwoFactor | Bool | Field containing MaximumPermissionsDelegatedTwoFactor information. | |
| MaximumPermissionsChatterComposeUiCodesnippet | Bool | Field containing MaximumPermissionsChatterComposeUiCodesnippet information. | |
| MaximumPermissionsSelectFilesFromSalesforce | Bool | Field containing MaximumPermissionsSelectFilesFromSalesforce information. | |
| MaximumPermissionsModerateNetworkUsers | Bool | Field containing MaximumPermissionsModerateNetworkUsers information. | |
| MaximumPermissionsMergeTopics | Bool | Field containing MaximumPermissionsMergeTopics information. | |
| MaximumPermissionsSubscribeToLightningReports | Bool | Field containing MaximumPermissionsSubscribeToLightningReports information. | |
| MaximumPermissionsManagePvtRptsAndDashbds | Bool | Field containing MaximumPermissionsManagePvtRptsAndDashbds information. | |
| MaximumPermissionsAllowLightningLogin | Bool | Field containing MaximumPermissionsAllowLightningLogin information. | |
| MaximumPermissionsLeadScoreUser | Bool | Field containing MaximumPermissionsLeadScoreUser information. | |
| MaximumPermissionsCampaignInfluence2 | Bool | Field containing MaximumPermissionsCampaignInfluence2 information. | |
| MaximumPermissionsViewDataAssessment | Bool | Field containing MaximumPermissionsViewDataAssessment information. | |
| MaximumPermissionsRemoveDirectMessageMembers | Bool | Field containing MaximumPermissionsRemoveDirectMessageMembers information. | |
| MaximumPermissionsCanApproveFeedPost | Bool | Field containing MaximumPermissionsCanApproveFeedPost information. | |
| MaximumPermissionsAddDirectMessageMembers | Bool | Field containing MaximumPermissionsAddDirectMessageMembers information. | |
| MaximumPermissionsAllowViewEditConvertedLeads | Bool | Field containing MaximumPermissionsAllowViewEditConvertedLeads information. | |
| MaximumPermissionsShowCompanyNameAsUserBadge | Bool | Field containing MaximumPermissionsShowCompanyNameAsUserBadge information. | |
| MaximumPermissionsAccessCMC | Bool | Field containing MaximumPermissionsAccessCMC information. | |
| MaximumPermissionsViewHealthCheck | Bool | Field containing MaximumPermissionsViewHealthCheck information. | |
| MaximumPermissionsManageHealthCheck | Bool | Field containing MaximumPermissionsManageHealthCheck information. | |
| MaximumPermissionsPackaging2 | Bool | Field containing MaximumPermissionsPackaging2 information. | |
| MaximumPermissionsManageCertificates | Bool | Field containing MaximumPermissionsManageCertificates information. | |
| MaximumPermissionsCreateReportInLightning | Bool | Field containing MaximumPermissionsCreateReportInLightning information. | |
| MaximumPermissionsPreventClassicExperience | Bool | Field containing MaximumPermissionsPreventClassicExperience information. | |
| MaximumPermissionsHideReadByList | Bool | Field containing MaximumPermissionsHideReadByList information. | |
| MaximumPermissionsDeleteFieldHistory | Bool | Field containing MaximumPermissionsDeleteFieldHistory information. | |
| MaximumPermissionsListEmailSend | Bool | Field containing MaximumPermissionsListEmailSend information. | |
| MaximumPermissionsFeedPinning | Bool | Field containing MaximumPermissionsFeedPinning information. | |
| MaximumPermissionsChangeDashboardColors | Bool | Field containing MaximumPermissionsChangeDashboardColors information. | |
| MaximumPermissionsManageRecommendationStrategies | Bool | Field containing MaximumPermissionsManageRecommendationStrategies information. | |
| MaximumPermissionsManagePropositions | Bool | Field containing MaximumPermissionsManagePropositions information. | |
| MaximumPermissionsCloseConversations | Bool | Field containing MaximumPermissionsCloseConversations information. | |
| MaximumPermissionsSubscribeReportRolesGrps | Bool | Field containing MaximumPermissionsSubscribeReportRolesGrps information. | |
| MaximumPermissionsSubscribeDashboardRolesGrps | Bool | Field containing MaximumPermissionsSubscribeDashboardRolesGrps information. | |
| MaximumPermissionsUseWebLink | Bool | Field containing MaximumPermissionsUseWebLink information. | |
| MaximumPermissionsHasUnlimitedNBAExecutions | Bool | Field containing MaximumPermissionsHasUnlimitedNBAExecutions information. | |
| MaximumPermissionsViewOnlyEmbeddedAppUser | Bool | Field containing MaximumPermissionsViewOnlyEmbeddedAppUser information. | |
| MaximumPermissionsViewAllActivities | Bool | Field containing MaximumPermissionsViewAllActivities information. | |
| MaximumPermissionsSubscribeReportToOtherUsers | Bool | Field containing MaximumPermissionsSubscribeReportToOtherUsers information. | |
| MaximumPermissionsLightningConsoleAllowedForUser | Bool | Field containing MaximumPermissionsLightningConsoleAllowedForUser information. | |
| MaximumPermissionsSubscribeReportsRunAsUser | Bool | Field containing MaximumPermissionsSubscribeReportsRunAsUser information. | |
| MaximumPermissionsSubscribeToLightningDashboards | Bool | Field containing MaximumPermissionsSubscribeToLightningDashboards information. | |
| MaximumPermissionsSubscribeDashboardToOtherUsers | Bool | Field containing MaximumPermissionsSubscribeDashboardToOtherUsers information. | |
| MaximumPermissionsPardotUser | Bool | Field containing MaximumPermissionsPardotUser information. | |
| MaximumPermissionsCreateLtngTempInPub | Bool | Field containing MaximumPermissionsCreateLtngTempInPub information. | |
| MaximumPermissionsTransactionalEmailSend | Bool | Field containing MaximumPermissionsTransactionalEmailSend information. | |
| MaximumPermissionsViewPrivateStaticResources | Bool | Field containing MaximumPermissionsViewPrivateStaticResources information. | |
| MaximumPermissionsCreateLtngTempFolder | Bool | Field containing MaximumPermissionsCreateLtngTempFolder information. | |
| MaximumPermissionsApexRestServices | Bool | Field containing MaximumPermissionsApexRestServices information. | |
| MaximumPermissionsEnableCommunityAppLauncher | Bool | Field containing MaximumPermissionsEnableCommunityAppLauncher information. | |
| MaximumPermissionsGiveRecognitionBadge | Bool | Field containing MaximumPermissionsGiveRecognitionBadge information. | |
| MaximumPermissionsSalesforceIQInternal | Bool | Field containing MaximumPermissionsSalesforceIQInternal information. | |
| MaximumPermissionsUseMySearch | Bool | Field containing MaximumPermissionsUseMySearch information. | |
| MaximumPermissionsLtngPromoReserved01UserPerm | Bool | Field containing MaximumPermissionsLtngPromoReserved01UserPerm information. | |
| MaximumPermissionsManageSubscriptions | Bool | Field containing MaximumPermissionsManageSubscriptions information. | |
| MaximumPermissionsWaveManagePrivateAssetsUser | Bool | Field containing MaximumPermissionsWaveManagePrivateAssetsUser information. | |
| MaximumPermissionsCanEditDataPrepRecipe | Bool | Field containing MaximumPermissionsCanEditDataPrepRecipe information. | |
| MaximumPermissionsAddAnalyticsRemoteConnections | Bool | Field containing MaximumPermissionsAddAnalyticsRemoteConnections information. | |
| MaximumPermissionsManageSurveys | Bool | Field containing MaximumPermissionsManageSurveys information. | |
| MaximumPermissionsUseAssistantDialog | Bool | Field containing MaximumPermissionsUseAssistantDialog information. | |
| MaximumPermissionsUseQuerySuggestions | Bool | Field containing MaximumPermissionsUseQuerySuggestions information. | |
| MaximumPermissionsRecordVisibilityAPI | Bool | Field containing MaximumPermissionsRecordVisibilityAPI information. | |
| MaximumPermissionsViewRoles | Bool | Field containing MaximumPermissionsViewRoles information. | |
| MaximumPermissionsCanManageMaps | Bool | Field containing MaximumPermissionsCanManageMaps information. | |
| MaximumPermissionsLMOutboundMessagingUserPerm | Bool | Field containing MaximumPermissionsLMOutboundMessagingUserPerm information. | |
| MaximumPermissionsModifyDataClassification | Bool | Field containing MaximumPermissionsModifyDataClassification information. | |
| MaximumPermissionsPrivacyDataAccess | Bool | Field containing MaximumPermissionsPrivacyDataAccess information. | |
| MaximumPermissionsQueryAllFiles | Bool | Field containing MaximumPermissionsQueryAllFiles information. | |
| MaximumPermissionsModifyMetadata | Bool | Field containing MaximumPermissionsModifyMetadata information. | |
| MaximumPermissionsManageCMS | Bool | Field containing MaximumPermissionsManageCMS information. | |
| MaximumPermissionsSandboxTestingInCommunityApp | Bool | Field containing MaximumPermissionsSandboxTestingInCommunityApp information. | |
| MaximumPermissionsCanEditPrompts | Bool | Field containing MaximumPermissionsCanEditPrompts information. | |
| MaximumPermissionsViewUserPII | Bool | Field containing MaximumPermissionsViewUserPII information. | |
| MaximumPermissionsManageHubConnections | Bool | Field containing MaximumPermissionsManageHubConnections information. | |
| MaximumPermissionsB2BMarketingAnalyticsUser | Bool | Field containing MaximumPermissionsB2BMarketingAnalyticsUser information. | |
| MaximumPermissionsTraceXdsQueries | Bool | Field containing MaximumPermissionsTraceXdsQueries information. | |
| MaximumPermissionsViewSecurityCommandCenter | Bool | Field containing MaximumPermissionsViewSecurityCommandCenter information. | |
| MaximumPermissionsManageSecurityCommandCenter | Bool | Field containing MaximumPermissionsManageSecurityCommandCenter information. | |
| MaximumPermissionsViewAllCustomSettings | Bool | Field containing MaximumPermissionsViewAllCustomSettings information. | |
| MaximumPermissionsViewAllForeignKeyNames | Bool | Field containing MaximumPermissionsViewAllForeignKeyNames information. | |
| MaximumPermissionsAddWaveNotificationRecipients | Bool | Field containing MaximumPermissionsAddWaveNotificationRecipients information. | |
| MaximumPermissionsHeadlessCMSAccess | Bool | Field containing MaximumPermissionsHeadlessCMSAccess information. | |
| MaximumPermissionsUseOrderManagementAPIs | Bool | Field containing MaximumPermissionsUseOrderManagementAPIs information. | |
| MaximumPermissionsEditUnmanagedOrderSummaries | Bool | Field containing MaximumPermissionsEditUnmanagedOrderSummaries information. | |
| MaximumPermissionsLMEndMessagingSessionUserPerm | Bool | Field containing MaximumPermissionsLMEndMessagingSessionUserPerm information. | |
| MaximumPermissionsConsentApiUpdate | Bool | Date associated with MaximumPermissionsConsentApiUp. | |
| MaximumPermissionsPaymentsAPIUser | Bool | Field containing MaximumPermissionsPaymentsAPIUser information. | |
| MaximumPermissionsAccessContentBuilder | Bool | Field containing MaximumPermissionsAccessContentBuilder information. | |
| MaximumPermissionsAccountSwitcherUser | Bool | Field containing MaximumPermissionsAccountSwitcherUser information. | |
| MaximumPermissionsViewAnomalyEvents | Bool | Field containing MaximumPermissionsViewAnomalyEvents information. | |
| MaximumPermissionsManageC360AConnections | Bool | Field containing MaximumPermissionsManageC360AConnections information. | |
| MaximumPermissionsManageReleaseUpdates | Bool | Field containing MaximumPermissionsManageReleaseUpdates information. | |
| MaximumPermissionsViewAllProfiles | Bool | Field containing MaximumPermissionsViewAllProfiles information. | |
| MaximumPermissionsSkipIdentityConfirmation | Bool | Field containing MaximumPermissionsSkipIdentityConfirmation information. | |
| MaximumPermissionsLearningManager | Bool | Field containing MaximumPermissionsLearningManager information. | |
| MaximumPermissionsSendCustomNotifications | Bool | Field containing MaximumPermissionsSendCustomNotifications information. | |
| MaximumPermissionsPackaging2Delete | Bool | Field containing MaximumPermissionsPackaging2Delete information. | |
| MaximumPermissionsUseOmnichannelInventoryAPIs | Bool | Field containing MaximumPermissionsUseOmnichannelInventoryAPIs information. | |
| MaximumPermissionsViewRestrictionAndScopingRules | Bool | Field containing MaximumPermissionsViewRestrictionAndScopingRules information. | |
| MaximumPermissionsFSCComprehensiveUserAccess | Bool | Field containing MaximumPermissionsFSCComprehensiveUserAccess information. | |
| MaximumPermissionsMarketingAdmin | Bool | Field containing MaximumPermissionsMarketingAdmin information. | |
| MaximumPermissionsBotManageBots | Bool | Field containing MaximumPermissionsBotManageBots information. | |
| MaximumPermissionsBotManageBotsTrainingData | Bool | Field containing MaximumPermissionsBotManageBotsTrainingData information. | |
| MaximumPermissionsEditDeliveryInformation | Bool | Field containing MaximumPermissionsEditDeliveryInformation information. | |
| MaximumPermissionsOmnichannelInventorySync | Bool | Field containing MaximumPermissionsOmnichannelInventorySync information. | |
| MaximumPermissionsManageLearningReporting | Bool | Field containing MaximumPermissionsManageLearningReporting information. | |
| MaximumPermissionsIsotopeCToCUser | Bool | Field containing MaximumPermissionsIsotopeCToCUser information. | |
| MaximumPermissionsManagePreferenceCenter | Bool | Field containing MaximumPermissionsManagePreferenceCenter information. | |
| MaximumPermissionsCanAccessCE | Bool | Field containing MaximumPermissionsCanAccessCE information. | |
| MaximumPermissionsIsotopeAccess | Bool | Field containing MaximumPermissionsIsotopeAccess information. | |
| MaximumPermissionsIsotopeLEX | Bool | Field containing MaximumPermissionsIsotopeLEX information. | |
| MaximumPermissionsQuipMetricsAccess | Bool | Field containing MaximumPermissionsQuipMetricsAccess information. | |
| MaximumPermissionsQuipUserEngagementMetrics | Bool | Field containing MaximumPermissionsQuipUserEngagementMetrics information. | |
| MaximumPermissionsTransactionSecurityExempt | Bool | Field containing MaximumPermissionsTransactionSecurityExempt information. | |
| MaximumPermissionsManageExternalConnections | Bool | Field containing MaximumPermissionsManageExternalConnections information. | |
| MaximumPermissionsUseSubscriptionEmails | Bool | Field containing MaximumPermissionsUseSubscriptionEmails information. | |
| MaximumPermissionsManageEmailContent | Bool | Field containing MaximumPermissionsManageEmailContent information. | |
| MaximumPermissionsAutomateEmailContent | Bool | Field containing MaximumPermissionsAutomateEmailContent information. | |
| MaximumPermissionsAIViewInsightObjects | Bool | Field containing MaximumPermissionsAIViewInsightObjects information. | |
| MaximumPermissionsAICreateInsightObjects | Bool | Field containing MaximumPermissionsAICreateInsightObjects information. | |
| MaximumPermissionsViewMLModels | Bool | Field containing MaximumPermissionsViewMLModels information. | |
| MaximumPermissionsLifecycleManagementAPIUser | Bool | Field containing MaximumPermissionsLifecycleManagementAPIUser information. | |
| MaximumPermissionsLeadScoreResultPublisher | Bool | Field containing MaximumPermissionsLeadScoreResultPublisher information. | |
| MaximumPermissionsManageGlobalPrivacyCenterVO | Bool | Field containing MaximumPermissionsManageGlobalPrivacyCenterVO information. | |
| MaximumPermissionsNativeWebviewScrolling | Bool | Field containing MaximumPermissionsNativeWebviewScrolling information. | |
| MaximumPermissionsViewDeveloperName | Bool | Field containing MaximumPermissionsViewDeveloperName information. | |
| MaximumPermissionsBypassMFAForUiLogins | Bool | Field containing MaximumPermissionsBypassMFAForUiLogins information. | |
| MaximumPermissionsClientSecretRotation | Bool | Field containing MaximumPermissionsClientSecretRotation information. | |
| MaximumPermissionsUseOrderSummaryCreateAPI | Bool | Field containing MaximumPermissionsUseOrderSummaryCreateAPI information. | |
| MaximumPermissionsAccessToServiceProcess | Bool | Field containing MaximumPermissionsAccessToServiceProcess information. | |
| MaximumPermissionsManageOrchInstsAndWorkItems | Bool | Field containing MaximumPermissionsManageOrchInstsAndWorkItems information. | |
| MaximumPermissionsCMSECEAuthoringAccess | Bool | Field containing MaximumPermissionsCMSECEAuthoringAccess information. | |
| MaximumPermissionsManageDataspaceScope | Bool | Field containing MaximumPermissionsManageDataspaceScope information. | |
| MaximumPermissionsConfigureDataspaceScope | Bool | Field containing MaximumPermissionsConfigureDataspaceScope information. | |
| MaximumPermissionsManageCampaigns | Bool | Field containing MaximumPermissionsManageCampaigns information. | |
| MaximumPermissionsViewClientSecret | Bool | Field containing MaximumPermissionsViewClientSecret information. | |
| MaximumPermissionsCdcReportingCreateReports | Bool | Field containing MaximumPermissionsCdcReportingCreateReports information. | |
| MaximumPermissionsCdcReportingViewReports | Bool | Field containing MaximumPermissionsCdcReportingViewReports information. | |
| MaximumPermissionsCdcReportingManageFolders | Bool | Field containing MaximumPermissionsCdcReportingManageFolders information. | |
| MaximumPermissionsExternalClientAppDeveloper | Bool | Field containing MaximumPermissionsExternalClientAppDeveloper information. | |
| MaximumPermissionsExternalClientAppAdmin | Bool | Field containing MaximumPermissionsExternalClientAppAdmin information. | |
| MaximumPermissionsExternalClientAppViewer | Bool | Field containing MaximumPermissionsExternalClientAppViewer information. | |
| MaximumPermissionsOmnichannelInventoryBasic | Bool | Field containing MaximumPermissionsOmnichannelInventoryBasic information. | |
| MaximumPermissionsDeleteCrMemoAndInvoice | Bool | Field containing MaximumPermissionsDeleteCrMemoAndInvoice information. | |
| MaximumPermissionsEmbeddedMessagingAgent | Bool | Field containing MaximumPermissionsEmbeddedMessagingAgent information. | |
| MaximumPermissionsViewNonSetupFlow | Bool | Field containing MaximumPermissionsViewNonSetupFlow information. | |
| MaximumPermissionsCreateEditNonSetupFlow | Bool | Field containing MaximumPermissionsCreateEditNonSetupFlow information. | |
| MaximumPermissionsDeleteNonSetupFlow | Bool | Field containing MaximumPermissionsDeleteNonSetupFlow information. | |
| MaximumPermissionsActivateDeactivateNonSetupFlow | Bool | Field containing MaximumPermissionsActivateDeactivateNonSetupFlow information. | |
| MaximumPermissionsAddDecisionElmntNonSetupFlow | Bool | Field containing MaximumPermissionsAddDecisionElmntNonSetupFlow information. | |
| MaximumPermissionsAddCreaRecElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddCreaRecElmntToNonSetupFlow information. | |
| MaximumPermissionsAddWaitToNonSetupFlow | Bool | Field containing MaximumPermissionsAddWaitToNonSetupFlow information. | |
| MaximumPermissionsManageNamedCredentials | Bool | Field containing MaximumPermissionsManageNamedCredentials information. | |
| MaximumPermissionsAddUpdtRecElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddUpdtRecElmntToNonSetupFlow information. | |
| MaximumPermissionsEditManagedOrderSummaries | Bool | Field containing MaximumPermissionsEditManagedOrderSummaries information. | |
| MaximumPermissionsCanInitiateMessagingSessions | Bool | Field containing MaximumPermissionsCanInitiateMessagingSessions information. | |
| MaximumPermissionsAuthorizePayments | Bool | Field containing MaximumPermissionsAuthorizePayments information. | |
| MaximumPermissionsCaptureAndReversePayments | Bool | Field containing MaximumPermissionsCaptureAndReversePayments information. | |
| MaximumPermissionsCombAuthAndCapPayments | Bool | Field containing MaximumPermissionsCombAuthAndCapPayments information. | |
| MaximumPermissionsRefundPayments | Bool | Field containing MaximumPermissionsRefundPayments information. | |
| MaximumPermissionsViewPayments | Bool | Field containing MaximumPermissionsViewPayments information. | |
| MaximumPermissionsMakePayments | Bool | Field containing MaximumPermissionsMakePayments information. | |
| MaximumPermissionsManageDataMaskPolicies | Bool | Field containing MaximumPermissionsManageDataMaskPolicies information. | |
| MaximumPermissionsCanUpdateEmailMessage | Bool | Field containing MaximumPermissionsCanUpdateEmailMessage information. | |
| MaximumPermissionsDownloadPackageVersionZips | Bool | Field containing MaximumPermissionsDownloadPackageVersionZips information. | |
| MaximumPermissionsViewContentTaxonomy | Bool | Field containing MaximumPermissionsViewContentTaxonomy information. | |
| MaximumPermissionsManageContentTaxonomy | Bool | Field containing MaximumPermissionsManageContentTaxonomy information. | |
| MaximumPermissionsReassignOrchestrationWorkItems | Bool | Field containing MaximumPermissionsReassignOrchestrationWorkItems information. | |
| MaximumPermissionsManageOrchestrationRuns | Bool | Field containing MaximumPermissionsManageOrchestrationRuns information. | |
| MaximumPermissionsDigitalLendingUser | Bool | Field containing MaximumPermissionsDigitalLendingUser information. | |
| MaximumPermissionsSendEmail | Bool | Field containing MaximumPermissionsSendEmail information. | |
| MaximumPermissionsPreviewTestSendEmail | Bool | Field containing MaximumPermissionsPreviewTestSendEmail information. | |
| MaximumPermissionsManageEmailMessagingSetup | Bool | Field containing MaximumPermissionsManageEmailMessagingSetup information. | |
| MaximumPermissionsViewEmailMessagingSetup | Bool | Field containing MaximumPermissionsViewEmailMessagingSetup information. | |
| MaximumPermissionsManageCertificatesExpiration | Bool | Field containing MaximumPermissionsManageCertificatesExpiration information. | |
| MaximumPermissionsEnableIPFSUpload | Bool | Field containing MaximumPermissionsEnableIPFSUpload information. | |
| MaximumPermissionsEnableBCTransactionPolling | Bool | Field containing MaximumPermissionsEnableBCTransactionPolling information. | |
| MaximumPermissionsLobbyManagementUserAccess | Bool | Field containing MaximumPermissionsLobbyManagementUserAccess information. | |
| MaximumPermissionsUMAWebTrackingSetup | Bool | Field containing MaximumPermissionsUMAWebTrackingSetup information. | |
| MaximumPermissionsAddGetRecElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddGetRecElmntToNonSetupFlow information. | |
| MaximumPermissionsAddLoopElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddLoopElmntToNonSetupFlow information. | |
| MaximumPermissionsAddAsgntElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddAsgntElmntToNonSetupFlow information. | |
| MaximumPermissionsAddSubflowElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddSubflowElmntToNonSetupFlow information. | |
| MaximumPermissionsMonitorLoginHistory | Bool | Field containing MaximumPermissionsMonitorLoginHistory information. | |
| MaximumPermissionsAddCollFltrElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddCollFltrElmntToNonSetupFlow information. | |
| MaximumPermissionsAddCollSrtElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddCollSrtElmntToNonSetupFlow information. | |
| MaximumPermissionsAddDelRecElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddDelRecElmntToNonSetupFlow information. | |
| MaximumPermissionsOpportunityInfluence | Bool | Field containing MaximumPermissionsOpportunityInfluence information. | |
| MaximumPermissionsConsentBannerSettingsSetup | Bool | Field containing MaximumPermissionsConsentBannerSettingsSetup information. | |
| MaximumPermissionsEnhancedSalesMobileExp | Bool | Field containing MaximumPermissionsEnhancedSalesMobileExp information. | |
| MaximumPermissionsCanViewDataPrepRecipe | Bool | Field containing MaximumPermissionsCanViewDataPrepRecipe information. | |
| MaximumPermissionsSimpleCsvDataImportUser | Bool | Field containing MaximumPermissionsSimpleCsvDataImportUser information. | |
| MaximumPermissionsAdvancedCsvDataImportUser | Bool | Field containing MaximumPermissionsAdvancedCsvDataImportUser information. | |
| MaximumPermissionsUmaQueryCMSEmailContent | Bool | Field containing MaximumPermissionsUmaQueryCMSEmailContent information. | |
| MaximumPermissionsAccessToComplaintMgmt | Bool | Field containing MaximumPermissionsAccessToComplaintMgmt information. | |
| MaximumPermissionsAccessToDisputeManagement | Bool | Field containing MaximumPermissionsAccessToDisputeManagement information. | |
| MaximumPermissionsUMAStandaloneUserPerm | Bool | Field containing MaximumPermissionsUMAStandaloneUserPerm information. | |
| MaximumPermissionsPersonalizedFinanceUserAccess | Bool | Field containing MaximumPermissionsPersonalizedFinanceUserAccess information. | |
| MaximumPermissionsUmaEditConsentSettings | Bool | Field containing MaximumPermissionsUmaEditConsentSettings information. | |
| MaximumPermissionsCustomAppsOnFSMobile | Bool | Field containing MaximumPermissionsCustomAppsOnFSMobile information. | |
| MaximumPermissionsStageManagementDesignUser | Bool | Field containing MaximumPermissionsStageManagementDesignUser information. | |
| MaximumPermissionsSegmentIntelligenceUser | Bool | Field containing MaximumPermissionsSegmentIntelligenceUser information. | |
| MaximumPermissionsFSCArcGraphCommunityUser | Bool | Field containing MaximumPermissionsFSCArcGraphCommunityUser information. | |
| MaximumPermissionsManageCdpMlModels | Bool | Field containing MaximumPermissionsManageCdpMlModels information. | |
| MaximumPermissionsDigitalLendingAdminUser | Bool | Field containing MaximumPermissionsDigitalLendingAdminUser information. | |
| MaximumPermissionsActivateSystemModeFlows | Bool | Field containing MaximumPermissionsActivateSystemModeFlows information. | |
| MaximumPermissionsViewAllNonSetupFlows | Bool | Field containing MaximumPermissionsViewAllNonSetupFlows information. | |
| MaximumPermissionsMcScoringRulesConfig | Bool | Field containing MaximumPermissionsMcScoringRulesConfig information. | |
| MaximumPermissionsPersonalizationPlatform | Bool | Field containing MaximumPermissionsPersonalizationPlatform information. | |
| MaximumPermissionsLeadInspectorUser | Bool | Field containing MaximumPermissionsLeadInspectorUser information. | |
| MaximumPermissionsContactInspectorUser | Bool | Field containing MaximumPermissionsContactInspectorUser information. | |
| MaximumPermissionsManageIntegrationConnections | Bool | Field containing MaximumPermissionsManageIntegrationConnections information. | |
| MaximumPermissionsTableauCreateDashboard | Bool | Field containing MaximumPermissionsTableauCreateDashboard information. | |
| MaximumPermissionsTableauViewDashboard | Bool | Field containing MaximumPermissionsTableauViewDashboard information. | |
| MaximumPermissionsEinsteinCopilotUser | Bool | Field containing MaximumPermissionsEinsteinCopilotUser information. | |
| MaximumPermissionsEinsteinCopilotBuilder | Bool | Field containing MaximumPermissionsEinsteinCopilotBuilder information. | |
| MaximumPermissionsUseCreateOrderSummary | Bool | Field containing MaximumPermissionsUseCreateOrderSummary information. | |
| MaximumPermissionsUseCreateCreditMemo | Bool | Field containing MaximumPermissionsUseCreateCreditMemo information. | |
| MaximumPermissionsUseEnsureFunds | Bool | Field containing MaximumPermissionsUseEnsureFunds information. | |
| MaximumPermissionsUseOrderItemSummaryCancel | Bool | Field containing MaximumPermissionsUseOrderItemSummaryCancel information. | |
| MaximumPermissionsUseOrderItemSummaryReturn | Bool | Field containing MaximumPermissionsUseOrderItemSummaryReturn information. | |
| MaximumPermissionsManageFilesAndAttachments | Bool | Field containing MaximumPermissionsManageFilesAndAttachments information. | |
| MaximumPermissionsAddTrfmElmntToNonSetupFlow | Bool | Field containing MaximumPermissionsAddTrfmElmntToNonSetupFlow information. | |
| MaximumPermissionsMobileMessagingAgent | Bool | Field containing MaximumPermissionsMobileMessagingAgent information. | |
| MaximumPermissionsTableauCreateVisualization | Bool | Field containing MaximumPermissionsTableauCreateVisualization information. | |
| MaximumPermissionsTableauViewVisualization | Bool | Field containing MaximumPermissionsTableauViewVisualization information. | |
| MaximumPermissionsManageCustomDomains | Bool | Field containing MaximumPermissionsManageCustomDomains information. | |
| MaximumPermissionsEngagementConfigUser | Bool | Field containing MaximumPermissionsEngagementConfigUser information. | |
| MaximumPermissionsPersonalizationIntelUser | Bool | Field containing MaximumPermissionsPersonalizationIntelUser information. | |
| MaximumPermissionsAttributionModelUser | Bool | Field containing MaximumPermissionsAttributionModelUser information. | |
| MaximumPermissionsTableauCreateWorkspace | Bool | Field containing MaximumPermissionsTableauCreateWorkspace information. | |
| MaximumPermissionsTableauViewWorkspace | Bool | Field containing MaximumPermissionsTableauViewWorkspace information. | |
| MaximumPermissionsManageBriefs | Bool | Field containing MaximumPermissionsManageBriefs information. | |
| MaximumPermissionsSalesInsightsUser | Bool | Field containing MaximumPermissionsSalesInsightsUser information. | |
| MaximumPermissionsCanSendInitialSMSToIndividual | Bool | Field containing MaximumPermissionsCanSendInitialSMSToIndividual information. | |
| MaximumPermissionsAccessDisputePrompts | Bool | Field containing MaximumPermissionsAccessDisputePrompts information. | |
| MaximumPermissionsQueryNonVetoedFiles | Bool | Field containing MaximumPermissionsQueryNonVetoedFiles information. | |
| MaximumPermissionsMetadataStudioUser | Bool | Field containing MaximumPermissionsMetadataStudioUser information. | |
| MaximumPermissionsAddPathExprmElmntNonSetupFlow | Bool | Field containing MaximumPermissionsAddPathExprmElmntNonSetupFlow information. | |
| MaximumPermissionsDigitalLendingWorkbench | Bool | Field containing MaximumPermissionsDigitalLendingWorkbench information. | |
| MaximumPermissionsDigitalLendingEditReadOnly | Bool | Field containing MaximumPermissionsDigitalLendingEditReadOnly information. | |
| MaximumPermissionsUseCanCancelInProgressChange | Bool | Field containing MaximumPermissionsUseCanCancelInProgressChange information. | |
| MaximumPermissionsPrmExtIntPrtnrAdminUser | Bool | Field containing MaximumPermissionsPrmExtIntPrtnrAdminUser information. | |
| MaximumPermissionsEinsteinAgentPlatformBuilder | Bool | Field containing MaximumPermissionsEinsteinAgentPlatformBuilder information. | |
| MaximumPermissionsUseServicePartReturn | Bool | Field containing MaximumPermissionsUseServicePartReturn information. | |
| MaximumPermissionsViewUMACalendar | Bool | Field containing MaximumPermissionsViewUMACalendar information. | |
| MaximumPermissionsHeadlessPublishNudges | Bool | Field containing MaximumPermissionsHeadlessPublishNudges information. | |
| MaximumPermissionsApprovalAdmin | Bool | Field containing MaximumPermissionsApprovalAdmin information. | |
| MaximumPermissionsApprovalDesigner | Bool | Field containing MaximumPermissionsApprovalDesigner information. | |
| MaximumPermissionsAccessServiceEinstein | Bool | Field containing MaximumPermissionsAccessServiceEinstein information. | |
| MaximumPermissionsViewRecommendations | Bool | Field containing MaximumPermissionsViewRecommendations information. | |
| MaximumPermissionsPrismPlaygroundUser | Bool | Field containing MaximumPermissionsPrismPlaygroundUser information. | |
| MaximumPermissionsModifyAllPolicyCenterPolicies | Bool | Field containing MaximumPermissionsModifyAllPolicyCenterPolicies information. | |
| MaximumPermissionsViewAllPolicyCenterPolicies | Bool | Field containing MaximumPermissionsViewAllPolicyCenterPolicies information. | |
| MaximumPermissionsAccessSfDrive | Bool | Field containing MaximumPermissionsAccessSfDrive information. | |
| MaximumPermissionsAppFrameworkManageApp | Bool | Field containing MaximumPermissionsAppFrameworkManageApp information. | |
| MaximumPermissionsAppFrameworkViewApp | Bool | Field containing MaximumPermissionsAppFrameworkViewApp information. | |
| MaximumPermissionsMCGSetupUserPerm | Bool | Field containing MaximumPermissionsMCGSetupUserPerm information. | |
| MaximumPermissionsAgentforceServiceAgentUser | Bool | Field containing MaximumPermissionsAgentforceServiceAgentUser information. | |
| MaximumPermissionsManageAgentforceServiceAgent | Bool | Field containing MaximumPermissionsManageAgentforceServiceAgent information. | |
| MaximumPermissionsCanTranslateScrt2Conversation | Bool | Field containing MaximumPermissionsCanTranslateScrt2Conversation information. | |
| MaximumPermissionsSlackFromTableau | Bool | Field containing MaximumPermissionsSlackFromTableau information. | |
| MaximumPermissionsTableauShareSnapshot | Bool | Field containing MaximumPermissionsTableauShareSnapshot information. | |
| MaximumPermissionsAccessBankingServiceAgent | Bool | Field containing MaximumPermissionsAccessBankingServiceAgent information. | |
| MaximumPermissionsPrismBackofficeUser | Bool | Field containing MaximumPermissionsPrismBackofficeUser information. | |
| MaximumPermissionsPersonalizationDecisioningUser | Bool | Field containing MaximumPermissionsPersonalizationDecisioningUser information. | |
| MaximumPermissionsAccessBankingRelationshipAssistance | Bool | Field containing MaximumPermissionsAccessBankingRelationshipAssistance information. | |
| MaximumPermissionsCanMarketingUserDebugFlow | Bool | Field containing MaximumPermissionsCanMarketingUserDebugFlow information. | |
| MaximumPermissionsCanDoActAsUser | Bool | Field containing MaximumPermissionsCanDoActAsUser information. | |
| MaximumPermissionsViewAllFieldsGlobal | Bool | Field containing MaximumPermissionsViewAllFieldsGlobal information. | |
| MaximumPermissionsManageHerokuAppLink | Bool | Field containing MaximumPermissionsManageHerokuAppLink information. | |
| MaximumPermissionsUserHasSendToListFilterAccess | Bool | Field containing MaximumPermissionsUserHasSendToListFilterAccess information. | |
| MaximumPermissionsMngBenVerfForAssistiveAgnt | Bool | Field containing MaximumPermissionsMngBenVerfForAssistiveAgnt information. | |
| MaximumPermissionsCreateModDGTrigNonSetupFlow | Bool | Field containing MaximumPermissionsCreateModDGTrigNonSetupFlow information. | |
| MaximumPermissionsAccessPolicyAgent | Bool | Field containing MaximumPermissionsAccessPolicyAgent information. | |
| MaximumPermissionsMCPMetadataApi | Bool | Field containing MaximumPermissionsMCPMetadataApi information. | |
| MaximumPermissionsAppFrameworkManageTemplate | Bool | Field containing MaximumPermissionsAppFrameworkManageTemplate information. | |
| MaximumPermissionsDigitalAgentUser | Bool | Field containing MaximumPermissionsDigitalAgentUser information. | |
| MaximumPermissionsAccessWealthAdvisorAgent | Bool | Field containing MaximumPermissionsAccessWealthAdvisorAgent information. | |
| MaximumPermissionsCanApproveUninstalledApps | Bool | Field containing MaximumPermissionsCanApproveUninstalledApps information. | |
| MaximumPermissionsSetupAgentBuilder | Bool | Field containing MaximumPermissionsSetupAgentBuilder information. | |
| MaximumPermissionsSetupAgentUser | Bool | Field containing MaximumPermissionsSetupAgentUser information. | |
| MaximumPermissionsUserCanDeployStore | Bool | Field containing MaximumPermissionsUserCanDeployStore information. | |
| MaximumPermissionsModifyAccessDenyPolicies | Bool | Field containing MaximumPermissionsModifyAccessDenyPolicies information. | |
| MaximumPermissionsManageAccessPolicies | Bool | Field containing MaximumPermissionsManageAccessPolicies information. | |
| MaximumPermissionsViewAccessPolicies | Bool | Field containing MaximumPermissionsViewAccessPolicies information. | |
| MaximumPermissionsModifyAccessAllowPolicies | Bool | Field containing MaximumPermissionsModifyAccessAllowPolicies information. | |
| MaximumPermissionsViewOrchestrationsInAutomApp | Bool | Field containing MaximumPermissionsViewOrchestrationsInAutomApp information. | |
| MaximumPermissionsTerritoryOperations | Bool | Field containing MaximumPermissionsTerritoryOperations information. | |
| UsedLicenses | Int | Number of licenses currently assigned to users for this permission set license. | |
| MigratableLicenses | Int | Field containing MigratableLicenses information. | |
| IsAvailableForIntegrations | Bool | Indicates whether the record has the AvailableForIntegrations characteristic. | |
| LicenseExpirationPolicy | String | Field containing LicenseExpirationPolicy information. | |
| IsSupplementLicense | Bool | Indicates whether the record has the SupplementLicense characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp for tracking the most recent modification to the record. | |
| CreatedDate | Datetime | Date and time when the permission set license was originally created. |
Schema file for PicklistValueInfo.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Value | String | Field containing Value information. | |
| Label | String | Field containing Label information. | |
| IsDefaultValue | Bool | Indicates whether the record has the DefaultValue characteristic. | |
| IsActive | Bool | Indicates whether the record is active. | |
| ValidFor | String | Field containing ValidFor information. | |
| EntityParticleId | String | ID of the EntityParticle associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
This table lists picklist values for the specified TableName.
TableName should be specified in the WHERE clause. RecordTypeId may also be specified along TableName to only retrieve data for a specific record type.
SELECT * FROM PickListValues WHERE TableName = 'Account' SELECT * FROM PickListValues WHERE TableName = 'Account' AND RecordTypeId = '0121W000000cq9EDAL'
| Name | Type | References | Description |
| ID [KEY] | String | The unique identifier of the picklist in the format ColumnName|Picklist_Value. | |
| TableName | String | The name of the table. This must be specified when retrieving data from PickListInformation. | |
| ColumnName | String | The name of the column associated with the picklist entry. This may be optionally specified to only retrieve picklist information with regards to the specified column. | |
| PickList_Value | String | The picklist value. | |
| PickList_Label | String | The label for the picklist value. | |
| PickList_IsActive | Boolean | A boolean indicating if the picklist value is active. | |
| PickList_IsDefault | Boolean | A boolean indicating if this picklist value is the default value for the column it is associated with. |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description | |
| RecordTypeId | String | The Id of the record type. Specify this to return values only for picklist fields of a record type. |
Schema file for PlatformAction.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| ExternalId | String | External ID from another system. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| Label | String | Field containing Label information. | |
| Type | String | Type of account or classification. | |
| Subtype | String | Type classification for Sub. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| ActionTarget | String | Field containing ActionTarget information. | |
| ActionTargetType | String | Type classification for ActionTarget. | |
| ConfirmationMessage | String | Field containing ConfirmationMessage information. | |
| GroupId | String | ID of the Group associated with this record. | |
| IsGroupDefault | Bool | Indicates whether the record has the GroupDefault characteristic. | |
| Category | String | Field containing Category information. | |
| InvocationStatus | String | Status of the Invocation. | |
| InvokedByUserId | String |
User.Id | ID of the InvokedByUser associated with this record. |
| SourceEntity | String | Field containing SourceEntity information. | |
| ActionListContext | String | Field containing ActionListContext information. | |
| DeviceFormat | String | Field containing DeviceFormat information. | |
| RetrievalMode | String | Field containing RetrievalMode information. | |
| IconContentType | String | Type classification for IconContent. | |
| IconHeight | Int | Field containing IconHeight information. | |
| IconWidth | Int | Field containing IconWidth information. | |
| IconUrl | String | Field containing IconUrl information. | |
| IsMassAction | Bool | Indicates whether the record has the MassAction characteristic. | |
| PrimaryColor | String | Field containing PrimaryColor information. | |
| RelatedSourceEntity | String | Field containing RelatedSourceEntity information. | |
| Section | String | Field containing Section information. | |
| RelatedListRecordId | String | ID of the RelatedListRecord associated with this record. | |
| TargetUrl | String | Field containing TargetUrl information. | |
| TargetObject | String | Field containing TargetObject information. | |
| OpenType | String | Type classification for Open. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for PlatformEventUsageMetric.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| ExternalId | String | External ID from another system. | |
| Name | String | Name of the record. | |
| StartDate | Datetime | Start date for the record or activity. | |
| EndDate | Datetime | End date for the record or activity. | |
| Value | String | Field containing Value information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Lists polymorphic columns relationships in the specified table.
| Name | Type | References | Description |
| TableName | String | The name of the table to retrieve relationship information from. | |
| ColumnName | String | The name of the polymorphic field. | |
| SalesforceType | String | The salesforce type of the polymorphic field. | |
| PrimaryKeyName | String | The name of the primary key. | |
| RelationshipName | String | The salesforce name of the relationship. | |
| ReferencedTableName | String | The name of the object the polymorphic fields relates to. | |
| ReferencedColumnName | String | The name of the column the polymorphic fields relates to. | |
| ForeignKeyName | String | The name of the foreign key. |
Tracks historical changes made to Pricebook2 records, including updates to pricing structures.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the price book history record. | |
| IsDeleted | Bool | Indicates whether the historical record has been deleted from the system. | |
| Pricebook2Id | String |
Pricebook2.Id | Identifier of the price book associated with this history entry. |
| CreatedById | String |
User.Id | Identifier of the user who made the change that generated this history record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Name of the field on the price book that was changed. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Previous value of the field before the change occurred. | |
| NewValue | String | Updated value of the field after the change was made. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the change was recorded. |
Schema file for PricebookEntryHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| PricebookEntryId | String | ID of the PricebookEntry associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for PrivacyJobSession.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| JobStatus | String | Status of the Job. | |
| StartTime | Datetime | Field containing StartTime information. | |
| EndTime | Datetime | Field containing EndTime information. | |
| CreationDate | Datetime | Date associated with Creation. | |
| SerializedPolicy | String | Field containing SerializedPolicy information. | |
| FailureLog | String | Field containing FailureLog information. | |
| CurrentObject | String | Field containing CurrentObject information. | |
| PrivacyPolicyDefinitionId | String | ID of the PrivacyPolicyDefinition associated with this record. | |
| ScheduledTime | Datetime | Field containing ScheduledTime information. | |
| JobStartType | String | Type classification for JobStart. | |
| OptionsTraversalComplete | Bool | Field containing OptionsTraversalComplete information. | |
| OptionsTraversalFailed | Bool | Field containing OptionsTraversalFailed information. | |
| OptionsProcessingFailed | Bool | Field containing OptionsProcessingFailed information. | |
| OptionsPreview | Bool | Field containing OptionsPreview information. | |
| OptionsAcknowledged | Bool | Field containing OptionsAcknowledged information. | |
| OptionsErrorBypassOccurred | Bool | Field containing OptionsErrorBypassOccurred information. | |
| PolicyName | String | Field containing PolicyName information. | |
| PolicyDescription | String | Field containing PolicyDescription information. | |
| PolicyType | String | Type classification for Policy. | |
| PrivacyRtbfRequestId | String | ID of the PrivacyRtbfRequest associated with this record. | |
| JobManagementType | String | Type classification for JobManagement. | |
| JobPolicyName | String | Field containing JobPolicyName information. | |
| IsPreview | Bool | Indicates whether the record has the Preview characteristic. | |
| PermissionSet | String | Field containing PermissionSet information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for PrivacyObjectSession.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| PrivacyJobSessionObjectId | String | ID of the PrivacyJobSessionObject associated with this record. | |
| PolicyNode | String | Field containing PolicyNode information. | |
| CurrentEntity | String | Field containing CurrentEntity information. | |
| ObjectStatus | String | Status of the Object. | |
| TraversalStartTime | Datetime | Field containing TraversalStartTime information. | |
| TraversalEndTime | Datetime | Field containing TraversalEndTime information. | |
| ObjectFailureLog | String | Field containing ObjectFailureLog information. | |
| ProcessedSuccesses | Int | Field containing ProcessedSuccesses information. | |
| ProcessedFailures | Int | Field containing ProcessedFailures information. | |
| ProcessedTotal | Int | Field containing ProcessedTotal information. | |
| RecordsAffected | Int | Field containing RecordsAffected information. | |
| Queue | String | Field containing Queue information. | |
| QueueLength | Int | Field containing QueueLength information. | |
| ProcessType | String | Type classification for Process. | |
| Processor | String | Field containing Processor information. | |
| Retry | Int | Field containing Retry information. | |
| Position | Int | Field containing Position information. | |
| UniqueConstraint | String | Field containing UniqueConstraint information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for PrivacyRTBFRequestHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| PrivacyRTBFRequestId | String | ID of the PrivacyRTBFRequest associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for PrivacySessionRecordFailure.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| PrivacyObjectSessionId | String | ID of the PrivacyObjectSession associated with this record. | |
| ErrorType | String | Type classification for Error. | |
| RecordIdNumber | String | RecordId identification number. | |
| ErrorMessage | String | Field containing ErrorMessage information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Defines process automation workflows in Salesforce, such as approval processes and custom flows.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the process definition record. | |
| Name | String | Human-readable name of the process definition, used for display and selection. | |
| DeveloperName | String | Unique API name for the process definition, used in development and automation tools. | |
| Type | String | Specifies the type of process, such as Flow or Workflow, defined in this record. | |
| Description | String | Text description providing details about the purpose or functionality of the process definition. | |
| TableEnumOrId | String | Identifier of the object (standard or custom) that this process definition is associated with. | |
| LockType | String | Specifies the record locking behavior during the process execution, such as locking the record for editing. | |
| State | String | Current status of the process definition, such as Draft, Active, or Obsolete. | |
| CreatedById | String |
User.Id | Identifier of the user who created the process definition. |
| LastModifiedDate | Datetime | Date and time when the process definition was most recently modified. | |
| LastModifiedById | String |
User.Id | Identifier of the user who last modified the process definition. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the latest update to the process definition. | |
| CreatedDate | Datetime | Date and time when the process definition was initially created. |
Schema file for ProcessFlowMigration.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| MigratedCriteriaLabel | String | Field containing MigratedCriteriaLabel information. | |
| MigratedCriteriaName | String | Field containing MigratedCriteriaName information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Tracks running instances of approval processes, recording their status and progression.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the process instance record. | |
| ProcessDefinitionId | String | Identifier of the approval process definition associated with this instance. | |
| TargetObjectId | String | Identifier of the record that the approval process is acting upon. | |
| TargetObjectIdType | String | Specifies the type of the 'TargetObjectId' polymorphic field to use in the statement. | |
| TargetObjectIdExternalFieldName | String | Specifies the external field name of the 'TargetObjectId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Status | String | Current status of the process instance, such as Started, Approved, or Rejected. | |
| CompletedDate | Datetime | Date when the record was completed. | |
| LastActorId | String |
User.Id | ID of the LastActor associated with this record. |
| ElapsedTimeInDays | Double | Field containing ElapsedTimeInDays information. | |
| ElapsedTimeInHours | Double | Field containing ElapsedTimeInHours information. | |
| ElapsedTimeInMinutes | Double | Field containing ElapsedTimeInMinutes information. | |
| SubmittedById | String |
User.Id | ID of the SubmittedBy associated with this record. |
| IsDeleted | Bool | Indicates whether the process instance has been deleted from the system. | |
| CreatedById | String |
User.Id | Identifier of the user who initiated the process instance. |
| LastModifiedDate | Datetime | Date and time when the process instance was last updated. | |
| LastModifiedById | String |
User.Id | Identifier of the user who last modified the process instance. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the latest update to the process instance. | |
| CreatedDate | Datetime | Date and time when the process instance was created. |
Schema file for ProcessInstanceNode.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ProcessInstanceId | String | ID of the ProcessInstance associated with this record. | |
| ProcessNodeId | String |
ProcessNode.Id | ID of the ProcessNode associated with this record. |
| NodeStatus | String | Status of the Node. | |
| CompletedDate | Datetime | Date when the record was completed. | |
| LastActorId | String |
User.Id | ID of the LastActor associated with this record. |
| ProcessNodeName | String | Field containing ProcessNodeName information. | |
| ElapsedTimeInDays | Double | Field containing ElapsedTimeInDays information. | |
| ElapsedTimeInHours | Double | Field containing ElapsedTimeInHours information. | |
| ElapsedTimeInMinutes | Double | Field containing ElapsedTimeInMinutes information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Represents individual steps within a process instance, tracking approvals and actions taken.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the process instance step record. | |
| ProcessInstanceId | String | Identifier of the process instance to which this step belongs. | |
| StepStatus | String | Current status of the step within the approval process, such as Pending or Approved. | |
| OriginalActorId | String | Identifier of the original user or group assigned to complete this step. | |
| OriginalActorIdType | String | Specifies the type of the 'OriginalActorId' polymorphic field to use in the statement. | |
| OriginalActorIdExternalFieldName | String | Specifies the external field name of the 'OriginalActorId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| ActorId | String | Identifier of the actual user or group responsible for acting on this step. | |
| ActorIdType | String | Specifies the type of the 'ActorId' polymorphic field to use in the statement. | |
| ActorIdExternalFieldName | String | Specifies the external field name of the 'ActorId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Comments | String | Comments or notes added by the actor during completion of the step. | |
| StepNodeId | String |
ProcessNode.Id | Identifier of the process node representing this step in the approval process definition. |
| ElapsedTimeInDays | Double | Field containing ElapsedTimeInDays information. | |
| ElapsedTimeInHours | Double | Field containing ElapsedTimeInHours information. | |
| ElapsedTimeInMinutes | Double | Field containing ElapsedTimeInMinutes information. | |
| CreatedById | String |
User.Id | Identifier of the user who created the process instance step. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the most recent update to this step. | |
| CreatedDate | Datetime | Date and time when this process step was created. |
Represents decision points and steps within a process definition.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the process node record. | |
| Name | String | Display name of the process node, typically used in the user interface. | |
| DeveloperName | String | API name of the process node, used in automation and development. | |
| ProcessDefinitionId | String | Identifier of the approval process definition that this node is part of. | |
| Description | String | Text description providing details about the purpose or function of this process node. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the most recent update to the process node. |
Schema file for Product2History.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Product2Id | String |
Product2.Id | ID of the Product associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for Publisher.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Name | String | Name of the record. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| IsSalesforce | Bool | Indicates whether the record has the Salesforce characteristic. | |
| MajorVersion | Int | Field containing MajorVersion information. | |
| MinorVersion | Int | Field containing MinorVersion information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for QuickTextHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| QuickTextId | String |
QuickText.Id | ID of the QuickText associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for QuickTextUsage.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| QuickTextId | String |
QuickText.Id | ID of the QuickText associated with this record. |
| Channel | String | Field containing Channel information. | |
| LaunchSource | String | Field containing LaunchSource information. | |
| LoggedTime | Datetime | Field containing LoggedTime information. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| AppContext | String | Field containing AppContext information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for RecordActionHistory.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedDate | Datetime | Date and time when the record was created. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| ParentRecordId | String | ID of the ParentRecord associated with this record. | |
| ActionDefinitionApiName | String | Field containing ActionDefinitionApiName information. | |
| ActionDefinitionLabel | String | Field containing ActionDefinitionLabel information. | |
| ActionType | String | Type classification for Action. | |
| State | String | State or province portion of the address. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| RecordActionId | String | ID of the RecordAction associated with this record. | |
| LoggedTime | Datetime | Field containing LoggedTime information. | |
| Pinned | String | Field containing Pinned information. | |
| IsMandatory | Bool | Indicates whether the record has the Mandatory characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for RelationshipDomain.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| ParentSobjectId | String | ID of the ParentSobject associated with this record. | |
| ChildSobjectId | String | ID of the ChildSobject associated with this record. | |
| FieldId | String | ID of the Field associated with this record. | |
| RelationshipInfoId | String | ID of the RelationshipInfo associated with this record. | |
| RelationshipName | String | Field containing RelationshipName information. | |
| IsCascadeDelete | Bool | Indicates whether the record has the CascadeDelete characteristic. | |
| IsDeprecatedAndHidden | Bool | Indicates whether the record has the DeprecatedAndHidden characteristic. | |
| IsRestrictedDelete | Bool | Indicates whether the record has the RestrictedDelete characteristic. | |
| JunctionIdListNames | String | Field containing JunctionIdListNames information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for RelationshipInfo.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| ChildSobjectId | String | ID of the ChildSobject associated with this record. | |
| FieldId | String | ID of the Field associated with this record. | |
| IsCascadeDelete | Bool | Indicates whether the record has the CascadeDelete characteristic. | |
| IsDeprecatedAndHidden | Bool | Indicates whether the record has the DeprecatedAndHidden characteristic. | |
| IsRestrictedDelete | Bool | Indicates whether the record has the RestrictedDelete characteristic. | |
| JunctionIdListNames | String | Field containing JunctionIdListNames information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Stores metadata for reports, defining data queries and visualization settings.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the report record. | |
| OwnerId | String | Identifier of the user or group who owns the report. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| FolderName | String | Field containing FolderName information. | |
| CreatedById | String |
User.Id | Identifier of the user who created the report. |
| LastModifiedDate | Datetime | Date and time when the report was last modified. | |
| LastModifiedById | String |
User.Id | Identifier of the user who last updated the report. |
| IsDeleted | Bool | Indicates whether the report has been deleted from the system. | |
| Name | String | Name of the report as it appears in the user interface. | |
| Description | String | Optional text description explaining the purpose or contents of the report. | |
| DeveloperName | String | API name used to reference the report in code and metadata. | |
| NamespacePrefix | String | Namespace prefix, typically used for reports in managed packages. | |
| LastRunDate | Datetime | Date and time when the report was most recently executed. | |
| Format | String | Format of the report, such as Tabular, Summary, or Matrix. | |
| LastViewedDate | Datetime | Date and time when the report was last viewed by a user. | |
| LastReferencedDate | Datetime | Date and time when the report was last referenced in a related context. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp reflecting the most recent change to the report. | |
| CreatedDate | Datetime | Date and time when the report was created. |
Schema file for ReportAnomalyEventStore.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| ReportAnomalyEventNumber | String | ReportAnomalyEvent identification number. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SourceIp | String | IP address from which the request originated. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| Report | String | Field containing Report information. | |
| Score | Double | Field containing Score information. | |
| Summary | String | Field containing Summary information. | |
| SecurityEventData | String | Field containing SecurityEventData information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ReportEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| LoginHistoryId | String |
LoginHistory.Id | ID of the related login history record. |
| RowsProcessed | Double | Field containing RowsProcessed information. | |
| Operation | String | Field containing Operation information. | |
| QueriedEntities | String | Field containing QueriedEntities information. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| DashboardId | String |
Dashboard.Id | ID of the Dashboard associated with this record. |
| DashboardName | String | Field containing DashboardName information. | |
| EventSource | String | Field containing EventSource information. | |
| ExecutionIdentifier | String | Field containing ExecutionIdentifier information. | |
| ExportFileFormat | String | Field containing ExportFileFormat information. | |
| IsScheduled | Bool | Indicates whether the record has the Scheduled characteristic. | |
| NumberOfColumns | Int | Field containing NumberOfColumns information. | |
| ColumnHeaders | String | Field containing ColumnHeaders information. | |
| GroupedColumnHeaders | String | Field containing GroupedColumnHeaders information. | |
| Description | String | Text description of the record. | |
| Format | String | Field containing Format information. | |
| ReportId | String |
Report.Id | ID of the Report associated with this record. |
| Records | String | Field containing Records information. | |
| Name | String | Name of the record. | |
| OwnerId | String | ID of the user who owns the record. | |
| OwnerIdType | String | Specifies the type of the 'OwnerId' polymorphic field to use in the statement. | |
| OwnerIdExternalFieldName | String | Specifies the external field name of the 'OwnerId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Scope | String | Field containing Scope information. | |
| Sequence | Int | Field containing Sequence information. | |
| DisplayedFieldEntities | String | Field containing DisplayedFieldEntities information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for SamlSsoConfig.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Version | String | Field containing Version information. | |
| Issuer | String | Indicates whether the record has the suer characteristic. | |
| OptionsSpInitBinding | Bool | Field containing OptionsSpInitBinding information. | |
| OptionsUserProvisioning | Bool | Field containing OptionsUserProvisioning information. | |
| OptionsUseConfigRequestMethod | Bool | Field containing OptionsUseConfigRequestMethod information. | |
| OptionsUseSameDigestAlgoForSigning | Bool | Field containing OptionsUseSameDigestAlgoForSigning information. | |
| OptionsRequireMfaSaml | Bool | Field containing OptionsRequireMfaSaml information. | |
| AttributeFormat | String | Field containing AttributeFormat information. | |
| AttributeName | String | Field containing AttributeName information. | |
| Audience | String | Field containing Audience information. | |
| IdentityMapping | String | Field containing IdentityMapping information. | |
| IdentityLocation | String | Field containing IdentityLocation information. | |
| SamlJitHandlerId | String |
ApexClass.Id | ID of the SamlJitHandler associated with this record. |
| ExecutionUserId | String |
User.Id | ID of the ExecutionUser associated with this record. |
| LoginUrl | String | Field containing LoginUrl information. | |
| LogoutUrl | String | Field containing LogoutUrl information. | |
| ErrorUrl | String | Field containing ErrorUrl information. | |
| ValidationCert | String | Field containing ValidationCert information. | |
| RequestSignatureMethod | String | Field containing RequestSignatureMethod information. | |
| SingleLogoutUrl | String | Field containing SingleLogoutUrl information. | |
| SingleLogoutBinding | String | Field containing SingleLogoutBinding information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for SearchLayout.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Label | String | Field containing Label information. | |
| LayoutType | String | Type classification for Layout. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| EntityDefinitionId | String | ID of the EntityDefinition associated with this record. | |
| FieldsDisplayed | String | Field containing FieldsDisplayed information. | |
| ButtonsDisplayed | String | Field containing ButtonsDisplayed information. | |
| Profile | String | Field containing Profile information. | |
| ProfileName | String | Field containing ProfileName information. | |
| ListLayout | String | Field containing ListLayout information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for SellerHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| SellerId | String |
Seller.Id | ID of the Seller associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ServiceContractHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ServiceContractId | String | ID of the ServiceContract associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ServiceSetupProvisioning.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| JobName | String | Field containing JobName information. | |
| TaskName | String | Field containing TaskName information. | |
| Status | String | Status of the record. | |
| TaskContext | String | Field containing TaskContext information. | |
| AttemptOrdinal | Int | Field containing AttemptOrdinal information. | |
| TaskAction | String | Field containing TaskAction information. | |
| TaskActionContext | String | Field containing TaskActionContext information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for SessionHijackingEventStore.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| SessionHijackingEventNumber | String | SessionHijackingEvent identification number. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| LastReferencedDate | Datetime | Date and time when the record was last referenced. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SourceIp | String | IP address from which the request originated. | |
| PolicyId | String | ID of the transaction security policy. | |
| PolicyOutcome | String | Result of the transaction security policy evaluation. | |
| EvaluationTime | Double | Time taken to evaluate the transaction security policy. | |
| Score | Double | Field containing Score information. | |
| CurrentIp | String | Field containing CurrentIp information. | |
| PreviousIp | String | Field containing PreviousIp information. | |
| CurrentPlatform | String | Field containing CurrentPlatform information. | |
| PreviousPlatform | String | Field containing PreviousPlatform information. | |
| CurrentScreen | String | Field containing CurrentScreen information. | |
| PreviousScreen | String | Field containing PreviousScreen information. | |
| CurrentWindow | String | Field containing CurrentWindow information. | |
| PreviousWindow | String | Field containing PreviousWindow information. | |
| CurrentUserAgent | String | Field containing CurrentUserAgent information. | |
| PreviousUserAgent | String | Field containing PreviousUserAgent information. | |
| SecurityEventData | String | Field containing SecurityEventData information. | |
| Summary | String | Field containing Summary information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for SessionPermSetActivation.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AuthSessionId | String |
AuthSession.Id | ID of the AuthSession associated with this record. |
| PermissionSetId | String | ID of the PermissionSet associated with this record. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| Description | String | Text description of the record. | |
| PermissionSetGroupId | String | ID of the PermissionSetGroup associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for SetupAuditTrail.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Action | String | Field containing Action information. | |
| Section | String | Field containing Section information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| Display | String | Field containing Display information. | |
| DelegateUser | String | Field containing DelegateUser information. | |
| ResponsibleNamespacePrefix | String | Field containing ResponsibleNamespacePrefix information. | |
| CreatedByContext | String | Field containing CreatedByContext information. | |
| CreatedByIssuer | String | Field containing CreatedByIssuer information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stores information about Salesforce Sites, which allow public website hosting on the Salesforce platform.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the site record. | |
| Name | String | Name of the site, used to distinguish it within Salesforce. | |
| Subdomain | String | Subdomain prefix used in the public-facing URL of the site. | |
| UrlPathPrefix | String | Default web address path prefix for accessing the site. | |
| GuestUserId | String |
User.Id | ID of the GuestUser associated with this record. |
| Status | String | Current status of the site, such as Active or Inactive. | |
| AdminId | String |
User.Id | Identifier of the user who serves as the site administrator. |
| OptionsEnableFeeds | Bool | Indicates whether Chatter feeds are enabled on the site. | |
| OptionsIsSiteGAIntegrationMigrated | Bool | Field containing OptionsIsSiteGAIntegrationMigrated information. | |
| OptionsRedirectToCustomDomain | Bool | Field containing OptionsRedirectToCustomDomain information. | |
| OptionsAllowGuestPaymentsApi | Bool | Field containing OptionsAllowGuestPaymentsApi information. | |
| OptionsHasStoredPathPrefix | Bool | Field containing OptionsHasStoredPathPrefix information. | |
| OptionsCookieConsent | Bool | Field containing OptionsCookieConsent information. | |
| OptionsCachePublicVfPagesInProxies | Bool | Field containing OptionsCachePublicVfPagesInProxies information. | |
| OptionsIsSiteDataCloudIntegrationEnabled | Bool | Field containing OptionsIsSiteDataCloudIntegrationEnabled information. | |
| OptionsIsSiteGAIntegrationEnabled | Bool | Field containing OptionsIsSiteGAIntegrationEnabled information. | |
| OptionsAllowHomePage | Bool | Specifies whether the standard Salesforce home page is available on the site. | |
| OptionsAllowStandardIdeasPages | Bool | Indicates whether standard Ideas pages are enabled on the site. | |
| OptionsAllowStandardSearch | Bool | Specifies whether the standard search pages are enabled for site users. | |
| OptionsAllowStandardLookups | Bool | Indicates whether standard lookup pages are enabled on the site. | |
| OptionsAllowStandardAnswersPages | Bool | Specifies whether standard Answers pages are available on the site. | |
| OptionsAllowGuestSupportApi | Bool | Field containing OptionsAllowGuestSupportApi information. | |
| OptionsAllowStandardPortalPages | Bool | Field containing OptionsAllowStandardPortalPages information. | |
| OptionsContentSniffingProtection | Bool | Field containing OptionsContentSniffingProtection information. | |
| OptionsBrowserXssProtection | Bool | Field containing OptionsBrowserXssProtection information. | |
| OptionsReferrerPolicyOriginWhenCrossOrigin | Bool | Field containing OptionsReferrerPolicyOriginWhenCrossOrigin information. | |
| OptionsUseGuestUserLanguage | Bool | Field containing OptionsUseGuestUserLanguage information. | |
| OptionsIsSiteGRecaptchaIntegrationEnabled | Bool | Field containing OptionsIsSiteGRecaptchaIntegrationEnabled information. | |
| OptionsIsSiteConsentBannerIntegrationEnabled | Bool | Field containing OptionsIsSiteConsentBannerIntegrationEnabled information. | |
| OptionsIsSiteGAIntegrationMigratedV2 | Bool | Field containing OptionsIsSiteGAIntegrationMigratedV2 information. | |
| OptionsIsSiteDataCloudIntegrationMigrated | Bool | Field containing OptionsIsSiteDataCloudIntegrationMigrated information. | |
| OptionsIsSiteConsentBannerIntegrationMigrated | Bool | Field containing OptionsIsSiteConsentBannerIntegrationMigrated information. | |
| OptionsIsSlashSRemovedSite | Bool | Field containing OptionsIsSlashSRemovedSite information. | |
| Description | String | Optional description providing context about the purpose or use of the site. | |
| MasterLabel | String | User-friendly label used for the site in the Salesforce UI. | |
| AnalyticsTrackingCode | String | Tracking code used for web analytics tools like Google Analytics. | |
| SiteType | String | Type of site, such as Visualforce or Lightning, determining its architecture. | |
| ClickjackProtectionLevel | String | Field containing ClickjackProtectionLevel information. | |
| DailyBandwidthLimit | Int | Maximum amount of data (in MB) allowed to be transferred daily. | |
| DailyBandwidthUsed | Double | Amount of bandwidth (in MB) consumed by the site so far today. | |
| DailyRequestTimeLimit | Int | Maximum cumulative request time (in minutes) allowed per day. | |
| DailyRequestTimeUsed | Double | Total request processing time (in minutes) used so far today. | |
| MonthlyPageViewsEntitlement | Int | Number of page views allowed per month as part of the site's license or configuration. | |
| CreatedById | String |
User.Id | Identifier of the user who created the site. |
| LastModifiedDate | Datetime | Date and time when the site record was last updated. | |
| LastModifiedById | String |
User.Id | Identifier of the user who last modified the site. |
| GuestRecordDefaultOwnerId | String |
User.Id | ID of the GuestRecordDefaultOwner associated with this record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the most recent change to the site record. | |
| CreatedDate | Datetime | Date and time when the site record was created. |
Schema file for SiteDetail.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| IsRegistrationEnabled | Bool | Indicates whether the record has the RegistrationEnabled characteristic. | |
| SecureUrl | String | Field containing SecureUrl information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Tracks changes made to Site records, logging modifications over time.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the site history record. | |
| IsDeleted | Bool | Indicates whether the site history record has been deleted from the system. | |
| SiteId | String |
Site.Id | Identifier of the site associated with this history entry. |
| CreatedById | String |
User.Id | Identifier of the user who made the change recorded in this history entry. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Name of the field on the site record that was changed. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Previous value of the field before the change occurred. | |
| NewValue | String | Updated value of the field after the change was made. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the change was logged in the history. |
Schema file for SlaProcess.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Name | String | Name of the record. | |
| NameNorm | String | Field containing NameNorm information. | |
| Description | String | Text description of the record. | |
| IsActive | Bool | Indicates whether the record is active. | |
| StartDateField | String | Field containing StartDateField information. | |
| SobjectType | String | Type classification for Sobject. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| BusinessHoursId | String | ID of the business hours associated with this record. | |
| LastViewedDate | Datetime | Date and time when the record was last viewed in the user interface. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Maintains a historical record of changes made to Solution records.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the solution history record. | |
| IsDeleted | Bool | Indicates whether the history record has been deleted from the system. | |
| SolutionId | String |
Solution.Id | Identifier of the solution associated with this history entry. |
| CreatedById | String |
User.Id | Identifier of the user who made the change recorded in this history entry. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Name of the solution field that was modified. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Previous value of the field before the change occurred. | |
| NewValue | String | New value of the field after the change was made. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the change to the solution was recorded. |
Defines different statuses for Solutions, such as Draft, Published, or Archived.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the solution status record. | |
| MasterLabel | String | Display name of the solution status shown in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Order in which this status appears in dropdowns or picklists. | |
| IsDefault | Bool | Indicates whether this status is the default value for new solutions. | |
| IsReviewed | Bool | Specifies whether solutions with this status are marked as reviewed. | |
| CreatedById | String |
User.Id | Identifier of the user who created the solution status record. |
| LastModifiedById | String |
User.Id | Identifier of the user who last modified the solution status. |
| LastModifiedDate | Datetime | Date and time when the solution status was last updated. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the most recent change to the record. | |
| CreatedDate | Datetime | Date and time when the solution status was created. |
Schema file for Stamp.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| ParentId | String |
Organization.Id | ID of the parent object in the hierarchy. |
| ParentIdType | String | Specifies the type of the 'ParentId' polymorphic field to use in the statement. | |
| ParentIdExternalFieldName | String | Specifies the external field name of the 'ParentId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Description | String | Text description of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for StampAssignment.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| StampId | String |
Stamp.Id | ID of the Stamp associated with this record. |
| SubjectId | String |
User.Id | ID of the Subject associated with this record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for StandardInvocableActionType.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Namespace | String | Field containing Namespace information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for SwarmHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| SwarmId | String |
Swarm.Id | ID of the Swarm associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for SwarmMemberHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| SwarmMemberId | String |
SwarmMember.Id | ID of the SwarmMember associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for TabDefinition.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| Name | String | Name of the record. | |
| Label | String | Field containing Label information. | |
| IsCustom | Bool | Indicates whether the record has the Custom characteristic. | |
| SobjectName | String | Field containing SobjectName information. | |
| Url | String | Field containing Url information. | |
| IsAvailableInAloha | Bool | Indicates whether the record has the AvailableInAloha characteristic. | |
| IsAvailableInLightning | Bool | Indicates whether the record has the AvailableInLightning characteristic. | |
| IsAvailableInMobile | Bool | Indicates whether the record has the AvailableInMobile characteristic. | |
| IsAvailableInDesktop | Bool | Indicates whether the record has the AvailableInDesktop characteristic. | |
| MobileUrl | String | Field containing MobileUrl information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Lists relationships in the specified table.
The Salesforce Cloud requires filtering on TableName in order to perform the query.
For example:
SELECT * FROM TableRelationships WHERE TableName = 'your_value'
| Name | Type | References | Description |
| ChildsObject [KEY] | String | The child table that is related to the specified TableName in the input. | |
| RelationshipName [KEY] | String | The name of the relationship. | |
| Field | String | The field the relationship is associated on. Found in the ChildsObject. | |
| ParentObject | String | The parent object in the relationship. This is the same as the input TableName. | |
| DeprecatedAndHidden | Boolean | Boolean indicating if the relationship is deprecated and now hidden. | |
| CascadeDelete | Boolean | Boolean stating if this entity is deleted, does the child object also get deleted. |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description | |
| TableName | String | The name of the table to retrieve relationship information from. |
Defines priority levels for tasks, such as High, Medium, or Low.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the task priority record. | |
| MasterLabel | String | Display label for the priority value, shown in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Numeric order in which this priority appears in dropdown menus. | |
| IsDefault | Bool | Indicates whether this is the default priority assigned to new tasks. | |
| IsHighPriority | Bool | Specifies whether this priority level is considered high priority for reporting or filtering. | |
| CreatedById | String |
User.Id | Identifier of the user who created the task priority record. |
| LastModifiedById | String |
User.Id | Identifier of the user who last modified the task priority record. |
| LastModifiedDate | Datetime | Date and time when the task priority was last updated. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the most recent change to the task priority. | |
| CreatedDate | Datetime | Date and time when the task priority was created. |
Specifies the possible statuses for tasks, including Not Started, In Progress, or Completed.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the task status record. | |
| MasterLabel | String | Display name for the status, shown in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Order in which this status appears in picklists and dropdowns. | |
| IsDefault | Bool | Indicates whether this status is the default for newly created tasks. | |
| IsClosed | Bool | Specifies whether this status marks the task as closed or completed. | |
| CreatedById | String |
User.Id | Identifier of the user who created the task status record. |
| LastModifiedById | String |
User.Id | Identifier of the user who last updated the task status. |
| LastModifiedDate | Datetime | Date and time when the task status was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp reflecting the latest change to the record. | |
| CreatedDate | Datetime | Date and time when the task status was created. |
Schema file for TenantUsageEntitlement.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| ResourceGroupKey | String | Field containing ResourceGroupKey information. | |
| Setting | String | Field containing Setting information. | |
| StartDate | Date | Start date for the record or activity. | |
| EndDate | Date | End date for the record or activity. | |
| CurrentAmountAllowed | Double | Field containing CurrentAmountAllowed information. | |
| Frequency | String | Field containing Frequency information. | |
| IsPersistentResource | Bool | Indicates whether the record has the PersistentResource characteristic. | |
| HasRollover | Bool | Indicates whether the record has Rollover. | |
| OverageGrace | Double | Field containing OverageGrace information. | |
| AmountUsed | Double | Field containing AmountUsed information. | |
| UsageDate | Datetime | Date associated with Usage. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for Territory2AlignmentLog.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| Territory2ModelId | String | ID of the Territory2Model associated with this record. | |
| Territory2Id | String |
Territory2.Id | ID of the Territory2 associated with this record. |
| RunAsId | String |
User.Id | ID of the RunAs associated with this record. |
| Filter | String | Field containing Filter information. | |
| StartTime | Datetime | Field containing StartTime information. | |
| EndTime | Datetime | Field containing EndTime information. | |
| Status | String | Status of the record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for Territory2ModelHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Territory2ModelId | String | ID of the Territory2Model associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for ThirdPartyAccountLink.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| ThirdPartyAccountLinkKey | String | Field containing ThirdPartyAccountLinkKey information. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| SsoProviderId | String |
AuthProvider.Id | ID of the SsoProvider associated with this record. |
| Handle | String | Field containing Handle information. | |
| RemoteIdentifier | String | Field containing RemoteIdentifier information. | |
| Provider | String | Field containing Provider information. | |
| SsoProviderName | String | Field containing SsoProviderName information. | |
| IsNotSsoUsable | Bool | Indicates whether the record has the NotSsoUsable characteristic. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for Translation.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| Language | String | Language of the record or user interface. | |
| IsActive | Bool | Indicates whether the record is active. | |
| CanManage | Bool | Indicates whether the user or record can perform Manage action. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for UiFormulaCriterion.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| RuleId | String | ID of the Rule associated with this record. | |
| LeftHandSide | String | Field containing LeftHandSide information. | |
| OperatorId | String | ID of the Operator associated with this record. | |
| RightHandSide | String | Field containing RightHandSide information. | |
| ParentKeyPrefix | String | Field containing ParentKeyPrefix information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for UiFormulaRule.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| Language | String | Language of the record or user interface. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| AssociatedElementId | String | ID of the AssociatedElement associated with this record. | |
| BooleanFilter | String | Field containing BooleanFilter information. | |
| Formula | String | Field containing Formula information. | |
| ParentKeyPrefix | String | Field containing ParentKeyPrefix information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Tracks relationships between events and attendees who have not yet responded to invitations.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record linking an event to a related user or contact with an undecided response. | |
| RelationId | String | Identifier of the user, contact, or lead associated with the event who has not responded. | |
| RelationIdType | String | Specifies the type of the 'RelationId' polymorphic field to use in the statement. | |
| RelationIdExternalFieldName | String | Specifies the external field name of the 'RelationId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| EventId | String |
Event.Id | Identifier of the calendar event that this record is linked to. |
| RespondedDate | Datetime | Date and time when the individual responded to the event invitation, if applicable. | |
| Response | String | Response status of the invitee, such as Accepted, Declined, or Undecided. | |
| CreatedById | String |
User.Id | Identifier of the user who created the undecided event relation. |
| LastModifiedDate | Datetime | Date and time when the relation record was last modified. | |
| LastModifiedById | String |
User.Id | Identifier of the user who last modified the record. |
| IsDeleted | Bool | Indicates whether the undecided event relation has been deleted. | |
| Type | String | Type of related record, such as User, Contact, or Lead. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp indicating the most recent change to the record. | |
| CreatedDate | Datetime | Date and time when the undecided event relation was created. |
Schema file for UriEvent.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| CreatedDate | Datetime | Date and time when the record was created. | |
| EventIdentifier | String | Unique identifier for the event. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| UserIdType | String | Specifies the type of the 'UserId' polymorphic field to use in the statement. | |
| UserIdExternalFieldName | String | Specifies the external field name of the 'UserId' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Username | String | Username of the user associated with this record. | |
| EventDate | Datetime | Date and time when the event occurred. | |
| RelatedEventIdentifier | String | ID of a related event. | |
| SessionKey | String | Unique key identifying the user session. | |
| LoginKey | String | Unique key identifying the login session. | |
| SessionLevel | String | Security level of the user session. | |
| SourceIp | String | IP address from which the request originated. | |
| Operation | String | Field containing Operation information. | |
| QueriedEntities | String | Field containing QueriedEntities information. | |
| RecordId | String | ID of the Record associated with this record. | |
| Name | String | Name of the record. | |
| UserType | String | Type classification for User. | |
| Message | String | Field containing Message information. | |
| OperationStatus | String | Status of the Operation. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for UserEntityAccess.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| IsMergeable | Bool | Indicates whether the record has the Mergeable characteristic. | |
| IsUpdatable | Bool | Indicates whether the record has the Updatable characteristic. | |
| IsActivateable | Bool | Indicates whether the record has the Activateable characteristic. | |
| IsReadable | Bool | Indicates whether the record has the Readable characteristic. | |
| IsCreatable | Bool | Indicates whether the record has the Creatable characteristic. | |
| IsEditable | Bool | Indicates whether the record has the Editable characteristic. | |
| IsDeletable | Bool | Indicates whether the record has the Deletable characteristic. | |
| IsUndeletable | Bool | Indicates whether the record has the Undeletable characteristic. | |
| IsFlsUpdatable | Bool | Indicates whether the record has the FlsUpdatable characteristic. | |
| EntityDefinitionId | String | ID of the EntityDefinition associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for UserFieldAccess.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| IsUpdatable | Bool | Indicates whether the record has the Updatable characteristic. | |
| IsCreatable | Bool | Indicates whether the record has the Creatable characteristic. | |
| IsAccessible | Bool | Indicates whether the record has the Accessible characteristic. | |
| EntityDefinitionId | String | ID of the EntityDefinition associated with this record. | |
| FieldDefinitionId | String | ID of the FieldDefinition associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Manages user licenses, tracking available and assigned Salesforce licenses.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the user license record. | |
| LicenseDefinitionKey | String | Key representing the internal definition of the license, used for system identification. | |
| TotalLicenses | Int | Field containing TotalLicenses information. | |
| Status | String | Status of the record. | |
| UsedLicenses | Int | Field containing UsedLicenses information. | |
| UsedLicensesLastUpdated | Datetime | Field containing UsedLicensesLastUpdated information. | |
| Name | String | Name of the user license, such as Salesforce, Platform, or Knowledge Only. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | System-generated timestamp reflecting the most recent update to the license record. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for UserPermissionAccess.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| LastCacheUpdate | Datetime | Date associated with LastCacheUp. | |
| PermissionsEmailSingle | Bool | Field containing PermissionsEmailSingle information. | |
| PermissionsEmailMass | Bool | Field containing PermissionsEmailMass information. | |
| PermissionsEditTask | Bool | Field containing PermissionsEditTask information. | |
| PermissionsEditEvent | Bool | Field containing PermissionsEditEvent information. | |
| PermissionsExportReport | Bool | Field containing PermissionsExportReport information. | |
| PermissionsImportPersonal | Bool | Field containing PermissionsImportPersonal information. | |
| PermissionsDataExport | Bool | Field containing PermissionsDataExport information. | |
| PermissionsManageUsers | Bool | Field containing PermissionsManageUsers information. | |
| PermissionsEditPublicFilters | Bool | Field containing PermissionsEditPublicFilters information. | |
| PermissionsEditPublicTemplates | Bool | Field containing PermissionsEditPublicTemplates information. | |
| PermissionsModifyAllData | Bool | Field containing PermissionsModifyAllData information. | |
| PermissionsEditBillingInfo | Bool | Field containing PermissionsEditBillingInfo information. | |
| PermissionsManageCases | Bool | Field containing PermissionsManageCases information. | |
| PermissionsMassInlineEdit | Bool | Field containing PermissionsMassInlineEdit information. | |
| PermissionsEditKnowledge | Bool | Field containing PermissionsEditKnowledge information. | |
| PermissionsManageKnowledge | Bool | Field containing PermissionsManageKnowledge information. | |
| PermissionsManageSolutions | Bool | Field containing PermissionsManageSolutions information. | |
| PermissionsCustomizeApplication | Bool | Field containing PermissionsCustomizeApplication information. | |
| PermissionsEditReadonlyFields | Bool | Field containing PermissionsEditReadonlyFields information. | |
| PermissionsRunReports | Bool | Field containing PermissionsRunReports information. | |
| PermissionsViewSetup | Bool | Field containing PermissionsViewSetup information. | |
| PermissionsTransferAnyEntity | Bool | Field containing PermissionsTransferAnyEntity information. | |
| PermissionsNewReportBuilder | Bool | Field containing PermissionsNewReportBuilder information. | |
| PermissionsActivateContract | Bool | Field containing PermissionsActivateContract information. | |
| PermissionsActivateOrder | Bool | Field containing PermissionsActivateOrder information. | |
| PermissionsImportLeads | Bool | Field containing PermissionsImportLeads information. | |
| PermissionsManageLeads | Bool | Field containing PermissionsManageLeads information. | |
| PermissionsTransferAnyLead | Bool | Field containing PermissionsTransferAnyLead information. | |
| PermissionsViewAllData | Bool | Field containing PermissionsViewAllData information. | |
| PermissionsEditPublicDocuments | Bool | Field containing PermissionsEditPublicDocuments information. | |
| PermissionsViewEncryptedData | Bool | Field containing PermissionsViewEncryptedData information. | |
| PermissionsEditBrandTemplates | Bool | Field containing PermissionsEditBrandTemplates information. | |
| PermissionsEditHtmlTemplates | Bool | Field containing PermissionsEditHtmlTemplates information. | |
| PermissionsChatterInternalUser | Bool | Field containing PermissionsChatterInternalUser information. | |
| PermissionsManageEncryptionKeys | Bool | Field containing PermissionsManageEncryptionKeys information. | |
| PermissionsDeleteActivatedContract | Bool | Field containing PermissionsDeleteActivatedContract information. | |
| PermissionsChatterInviteExternalUsers | Bool | Field containing PermissionsChatterInviteExternalUsers information. | |
| PermissionsSendSitRequests | Bool | Field containing PermissionsSendSitRequests information. | |
| PermissionsApiUserOnly | Bool | Field containing PermissionsApiUserOnly information. | |
| PermissionsManageRemoteAccess | Bool | Field containing PermissionsManageRemoteAccess information. | |
| PermissionsCanUseNewDashboardBuilder | Bool | Field containing PermissionsCanUseNewDashboardBuilder information. | |
| PermissionsManageCategories | Bool | Field containing PermissionsManageCategories information. | |
| PermissionsConvertLeads | Bool | Field containing PermissionsConvertLeads information. | |
| PermissionsPasswordNeverExpires | Bool | Field containing PermissionsPasswordNeverExpires information. | |
| PermissionsUseTeamReassignWizards | Bool | Field containing PermissionsUseTeamReassignWizards information. | |
| PermissionsEditActivatedOrders | Bool | Field containing PermissionsEditActivatedOrders information. | |
| PermissionsInstallPackaging | Bool | Field containing PermissionsInstallPackaging information. | |
| PermissionsPublishPackaging | Bool | Field containing PermissionsPublishPackaging information. | |
| PermissionsChatterOwnGroups | Bool | Field containing PermissionsChatterOwnGroups information. | |
| PermissionsEditOppLineItemUnitPrice | Bool | Field containing PermissionsEditOppLineItemUnitPrice information. | |
| PermissionsManageTerritories | Bool | Field containing PermissionsManageTerritories information. | |
| PermissionsCreatePackaging | Bool | Field containing PermissionsCreatePackaging information. | |
| PermissionsBulkApiHardDelete | Bool | Field containing PermissionsBulkApiHardDelete information. | |
| PermissionsSolutionImport | Bool | Field containing PermissionsSolutionImport information. | |
| PermissionsManageCallCenters | Bool | Field containing PermissionsManageCallCenters information. | |
| PermissionsManageSynonyms | Bool | Field containing PermissionsManageSynonyms information. | |
| PermissionsViewContent | Bool | Field containing PermissionsViewContent information. | |
| PermissionsManageEmailClientConfig | Bool | Field containing PermissionsManageEmailClientConfig information. | |
| PermissionsEnableNotifications | Bool | Field containing PermissionsEnableNotifications information. | |
| PermissionsIsSsoEnabled | Bool | Field containing PermissionsIsSsoEnabled information. | |
| PermissionsManageDataIntegrations | Bool | Field containing PermissionsManageDataIntegrations information. | |
| PermissionsDistributeFromPersWksp | Bool | Field containing PermissionsDistributeFromPersWksp information. | |
| PermissionsViewDataCategories | Bool | Field containing PermissionsViewDataCategories information. | |
| PermissionsManageDataCategories | Bool | Field containing PermissionsManageDataCategories information. | |
| PermissionsAuthorApex | Bool | Field containing PermissionsAuthorApex information. | |
| PermissionsManageMobile | Bool | Field containing PermissionsManageMobile information. | |
| PermissionsApiEnabled | Bool | Field containing PermissionsApiEnabled information. | |
| PermissionsManageCustomReportTypes | Bool | Field containing PermissionsManageCustomReportTypes information. | |
| PermissionsEditCaseComments | Bool | Field containing PermissionsEditCaseComments information. | |
| PermissionsTransferAnyCase | Bool | Field containing PermissionsTransferAnyCase information. | |
| PermissionsContentAdministrator | Bool | Field containing PermissionsContentAdministrator information. | |
| PermissionsCreateWorkspaces | Bool | Field containing PermissionsCreateWorkspaces information. | |
| PermissionsManageContentPermissions | Bool | Field containing PermissionsManageContentPermissions information. | |
| PermissionsManageContentProperties | Bool | Field containing PermissionsManageContentProperties information. | |
| PermissionsManageContentTypes | Bool | Field containing PermissionsManageContentTypes information. | |
| PermissionsManageExchangeConfig | Bool | Field containing PermissionsManageExchangeConfig information. | |
| PermissionsManageAnalyticSnapshots | Bool | Field containing PermissionsManageAnalyticSnapshots information. | |
| PermissionsScheduleReports | Bool | Field containing PermissionsScheduleReports information. | |
| PermissionsManageBusinessHourHolidays | Bool | Field containing PermissionsManageBusinessHourHolidays information. | |
| PermissionsManageEntitlements | Bool | Field containing PermissionsManageEntitlements information. | |
| PermissionsManageDynamicDashboards | Bool | Field containing PermissionsManageDynamicDashboards information. | |
| PermissionsCustomSidebarOnAllPages | Bool | Field containing PermissionsCustomSidebarOnAllPages information. | |
| PermissionsManageInteraction | Bool | Field containing PermissionsManageInteraction information. | |
| PermissionsViewMyTeamsDashboards | Bool | Field containing PermissionsViewMyTeamsDashboards information. | |
| PermissionsModerateChatter | Bool | Field containing PermissionsModerateChatter information. | |
| PermissionsResetPasswords | Bool | Field containing PermissionsResetPasswords information. | |
| PermissionsFlowUFLRequired | Bool | Field containing PermissionsFlowUFLRequired information. | |
| PermissionsCanInsertFeedSystemFields | Bool | Field containing PermissionsCanInsertFeedSystemFields information. | |
| PermissionsActivitiesAccess | Bool | Field containing PermissionsActivitiesAccess information. | |
| PermissionsManageKnowledgeImportExport | Bool | Field containing PermissionsManageKnowledgeImportExport information. | |
| PermissionsUseInboxSchedulingOnBehalfOf | Bool | Field containing PermissionsUseInboxSchedulingOnBehalfOf information. | |
| PermissionsEmailTemplateManagement | Bool | Field containing PermissionsEmailTemplateManagement information. | |
| PermissionsEmailAdministration | Bool | Field containing PermissionsEmailAdministration information. | |
| PermissionsDeleteEventMonitoringData | Bool | Field containing PermissionsDeleteEventMonitoringData information. | |
| PermissionsManageChatterMessages | Bool | Field containing PermissionsManageChatterMessages information. | |
| PermissionsAllowEmailIC | Bool | Field containing PermissionsAllowEmailIC information. | |
| PermissionsChatterFileLink | Bool | Field containing PermissionsChatterFileLink information. | |
| PermissionsForceTwoFactor | Bool | Field containing PermissionsForceTwoFactor information. | |
| PermissionsViewEventLogFiles | Bool | Field containing PermissionsViewEventLogFiles information. | |
| PermissionsManageNetworks | Bool | Field containing PermissionsManageNetworks information. | |
| PermissionsManageAuthProviders | Bool | Field containing PermissionsManageAuthProviders information. | |
| PermissionsRunFlow | Bool | Field containing PermissionsRunFlow information. | |
| PermissionsCreateCustomizeDashboards | Bool | Field containing PermissionsCreateCustomizeDashboards information. | |
| PermissionsCreateDashboardFolders | Bool | Field containing PermissionsCreateDashboardFolders information. | |
| PermissionsViewPublicDashboards | Bool | Field containing PermissionsViewPublicDashboards information. | |
| PermissionsManageDashbdsInPubFolders | Bool | Field containing PermissionsManageDashbdsInPubFolders information. | |
| PermissionsCreateCustomizeReports | Bool | Field containing PermissionsCreateCustomizeReports information. | |
| PermissionsCreateReportFolders | Bool | Field containing PermissionsCreateReportFolders information. | |
| PermissionsViewPublicReports | Bool | Field containing PermissionsViewPublicReports information. | |
| PermissionsManageReportsInPubFolders | Bool | Field containing PermissionsManageReportsInPubFolders information. | |
| PermissionsEditMyDashboards | Bool | Field containing PermissionsEditMyDashboards information. | |
| PermissionsEditMyReports | Bool | Field containing PermissionsEditMyReports information. | |
| PermissionsDeleteFieldHistoryArchive | Bool | Field containing PermissionsDeleteFieldHistoryArchive information. | |
| PermissionsViewAllUsers | Bool | Field containing PermissionsViewAllUsers information. | |
| PermissionsAllowUniversalSearch | Bool | Field containing PermissionsAllowUniversalSearch information. | |
| PermissionsConnectOrgToEnvironmentHub | Bool | Field containing PermissionsConnectOrgToEnvironmentHub information. | |
| PermissionsWorkCalibrationUser | Bool | Field containing PermissionsWorkCalibrationUser information. | |
| PermissionsCreateCustomizeFilters | Bool | Field containing PermissionsCreateCustomizeFilters information. | |
| PermissionsWorkDotComUserPerm | Bool | Field containing PermissionsWorkDotComUserPerm information. | |
| PermissionsContentHubUser | Bool | Field containing PermissionsContentHubUser information. | |
| PermissionsGovernNetworks | Bool | Field containing PermissionsGovernNetworks information. | |
| PermissionsSalesConsole | Bool | Field containing PermissionsSalesConsole information. | |
| PermissionsTwoFactorApi | Bool | Field containing PermissionsTwoFactorApi information. | |
| PermissionsDeleteTopics | Bool | Field containing PermissionsDeleteTopics information. | |
| PermissionsEditTopics | Bool | Field containing PermissionsEditTopics information. | |
| PermissionsCreateTopics | Bool | Field containing PermissionsCreateTopics information. | |
| PermissionsAssignTopics | Bool | Field containing PermissionsAssignTopics information. | |
| PermissionsIdentityEnabled | Bool | Field containing PermissionsIdentityEnabled information. | |
| PermissionsIdentityConnect | Bool | Field containing PermissionsIdentityConnect information. | |
| PermissionsAllowViewKnowledge | Bool | Field containing PermissionsAllowViewKnowledge information. | |
| PermissionsContentWorkspaces | Bool | Field containing PermissionsContentWorkspaces information. | |
| PermissionsManageSearchPromotionRules | Bool | Field containing PermissionsManageSearchPromotionRules information. | |
| PermissionsCustomMobileAppsAccess | Bool | Field containing PermissionsCustomMobileAppsAccess information. | |
| PermissionsViewHelpLink | Bool | Field containing PermissionsViewHelpLink information. | |
| PermissionsManageProfilesPermissionsets | Bool | Field containing PermissionsManageProfilesPermissionsets information. | |
| PermissionsAssignPermissionSets | Bool | Field containing PermissionsAssignPermissionSets information. | |
| PermissionsManageRoles | Bool | Field containing PermissionsManageRoles information. | |
| PermissionsManageIpAddresses | Bool | Field containing PermissionsManageIpAddresses information. | |
| PermissionsManageSharing | Bool | Field containing PermissionsManageSharing information. | |
| PermissionsManageInternalUsers | Bool | Field containing PermissionsManageInternalUsers information. | |
| PermissionsManagePasswordPolicies | Bool | Field containing PermissionsManagePasswordPolicies information. | |
| PermissionsManageLoginAccessPolicies | Bool | Field containing PermissionsManageLoginAccessPolicies information. | |
| PermissionsViewPlatformEvents | Bool | Field containing PermissionsViewPlatformEvents information. | |
| PermissionsManageCustomPermissions | Bool | Field containing PermissionsManageCustomPermissions information. | |
| PermissionsCanVerifyComment | Bool | Field containing PermissionsCanVerifyComment information. | |
| PermissionsManageUnlistedGroups | Bool | Field containing PermissionsManageUnlistedGroups information. | |
| PermissionsStdAutomaticActivityCapture | Bool | Field containing PermissionsStdAutomaticActivityCapture information. | |
| PermissionsFreezeUsers | Bool | Field containing PermissionsFreezeUsers information. | |
| PermissionsInsightsAppDashboardEditor | Bool | Field containing PermissionsInsightsAppDashboardEditor information. | |
| PermissionsManageTwoFactor | Bool | Field containing PermissionsManageTwoFactor information. | |
| PermissionsInsightsAppUser | Bool | Field containing PermissionsInsightsAppUser information. | |
| PermissionsInsightsAppAdmin | Bool | Field containing PermissionsInsightsAppAdmin information. | |
| PermissionsInsightsAppEltEditor | Bool | Field containing PermissionsInsightsAppEltEditor information. | |
| PermissionsInsightsAppUploadUser | Bool | Field containing PermissionsInsightsAppUploadUser information. | |
| PermissionsInsightsCreateApplication | Bool | Field containing PermissionsInsightsCreateApplication information. | |
| PermissionsLightningExperienceUser | Bool | Field containing PermissionsLightningExperienceUser information. | |
| PermissionsViewDataLeakageEvents | Bool | Field containing PermissionsViewDataLeakageEvents information. | |
| PermissionsConfigCustomRecs | Bool | Field containing PermissionsConfigCustomRecs information. | |
| PermissionsSubmitMacrosAllowed | Bool | Field containing PermissionsSubmitMacrosAllowed information. | |
| PermissionsBulkMacrosAllowed | Bool | Field containing PermissionsBulkMacrosAllowed information. | |
| PermissionsShareInternalArticles | Bool | Field containing PermissionsShareInternalArticles information. | |
| PermissionsManageSessionPermissionSets | Bool | Field containing PermissionsManageSessionPermissionSets information. | |
| PermissionsManageTemplatedApp | Bool | Field containing PermissionsManageTemplatedApp information. | |
| PermissionsUseTemplatedApp | Bool | Field containing PermissionsUseTemplatedApp information. | |
| PermissionsSendAnnouncementEmails | Bool | Field containing PermissionsSendAnnouncementEmails information. | |
| PermissionsChatterEditOwnPost | Bool | Field containing PermissionsChatterEditOwnPost information. | |
| PermissionsChatterEditOwnRecordPost | Bool | Field containing PermissionsChatterEditOwnRecordPost information. | |
| PermissionsWaveTabularDownload | Bool | Field containing PermissionsWaveTabularDownload information. | |
| PermissionsWaveCommunityUser | Bool | Field containing PermissionsWaveCommunityUser information. | |
| PermissionsAutomaticActivityCapture | Bool | Field containing PermissionsAutomaticActivityCapture information. | |
| PermissionsImportCustomObjects | Bool | Field containing PermissionsImportCustomObjects information. | |
| PermissionsSalesforceIQInbox | Bool | Field containing PermissionsSalesforceIQInbox information. | |
| PermissionsDelegatedTwoFactor | Bool | Field containing PermissionsDelegatedTwoFactor information. | |
| PermissionsChatterComposeUiCodesnippet | Bool | Field containing PermissionsChatterComposeUiCodesnippet information. | |
| PermissionsSelectFilesFromSalesforce | Bool | Field containing PermissionsSelectFilesFromSalesforce information. | |
| PermissionsModerateNetworkUsers | Bool | Field containing PermissionsModerateNetworkUsers information. | |
| PermissionsMergeTopics | Bool | Field containing PermissionsMergeTopics information. | |
| PermissionsSubscribeToLightningReports | Bool | Field containing PermissionsSubscribeToLightningReports information. | |
| PermissionsManagePvtRptsAndDashbds | Bool | Field containing PermissionsManagePvtRptsAndDashbds information. | |
| PermissionsAllowLightningLogin | Bool | Field containing PermissionsAllowLightningLogin information. | |
| PermissionsLeadScoreUser | Bool | Field containing PermissionsLeadScoreUser information. | |
| PermissionsCampaignInfluence2 | Bool | Field containing PermissionsCampaignInfluence2 information. | |
| PermissionsViewDataAssessment | Bool | Field containing PermissionsViewDataAssessment information. | |
| PermissionsRemoveDirectMessageMembers | Bool | Field containing PermissionsRemoveDirectMessageMembers information. | |
| PermissionsCanApproveFeedPost | Bool | Field containing PermissionsCanApproveFeedPost information. | |
| PermissionsAddDirectMessageMembers | Bool | Field containing PermissionsAddDirectMessageMembers information. | |
| PermissionsAllowViewEditConvertedLeads | Bool | Field containing PermissionsAllowViewEditConvertedLeads information. | |
| PermissionsShowCompanyNameAsUserBadge | Bool | Field containing PermissionsShowCompanyNameAsUserBadge information. | |
| PermissionsAccessCMC | Bool | Field containing PermissionsAccessCMC information. | |
| PermissionsViewHealthCheck | Bool | Field containing PermissionsViewHealthCheck information. | |
| PermissionsManageHealthCheck | Bool | Field containing PermissionsManageHealthCheck information. | |
| PermissionsPackaging2 | Bool | Field containing PermissionsPackaging2 information. | |
| PermissionsManageCertificates | Bool | Field containing PermissionsManageCertificates information. | |
| PermissionsCreateReportInLightning | Bool | Field containing PermissionsCreateReportInLightning information. | |
| PermissionsPreventClassicExperience | Bool | Field containing PermissionsPreventClassicExperience information. | |
| PermissionsHideReadByList | Bool | Field containing PermissionsHideReadByList information. | |
| PermissionsDeleteFieldHistory | Bool | Field containing PermissionsDeleteFieldHistory information. | |
| PermissionsListEmailSend | Bool | Field containing PermissionsListEmailSend information. | |
| PermissionsFeedPinning | Bool | Field containing PermissionsFeedPinning information. | |
| PermissionsChangeDashboardColors | Bool | Field containing PermissionsChangeDashboardColors information. | |
| PermissionsManageRecommendationStrategies | Bool | Field containing PermissionsManageRecommendationStrategies information. | |
| PermissionsManagePropositions | Bool | Field containing PermissionsManagePropositions information. | |
| PermissionsCloseConversations | Bool | Field containing PermissionsCloseConversations information. | |
| PermissionsSubscribeReportRolesGrps | Bool | Field containing PermissionsSubscribeReportRolesGrps information. | |
| PermissionsSubscribeDashboardRolesGrps | Bool | Field containing PermissionsSubscribeDashboardRolesGrps information. | |
| PermissionsUseWebLink | Bool | Field containing PermissionsUseWebLink information. | |
| PermissionsHasUnlimitedNBAExecutions | Bool | Field containing PermissionsHasUnlimitedNBAExecutions information. | |
| PermissionsViewOnlyEmbeddedAppUser | Bool | Field containing PermissionsViewOnlyEmbeddedAppUser information. | |
| PermissionsViewAllActivities | Bool | Field containing PermissionsViewAllActivities information. | |
| PermissionsSubscribeReportToOtherUsers | Bool | Field containing PermissionsSubscribeReportToOtherUsers information. | |
| PermissionsLightningConsoleAllowedForUser | Bool | Field containing PermissionsLightningConsoleAllowedForUser information. | |
| PermissionsSubscribeReportsRunAsUser | Bool | Field containing PermissionsSubscribeReportsRunAsUser information. | |
| PermissionsSubscribeToLightningDashboards | Bool | Field containing PermissionsSubscribeToLightningDashboards information. | |
| PermissionsSubscribeDashboardToOtherUsers | Bool | Field containing PermissionsSubscribeDashboardToOtherUsers information. | |
| PermissionsPardotUser | Bool | Field containing PermissionsPardotUser information. | |
| PermissionsCreateLtngTempInPub | Bool | Field containing PermissionsCreateLtngTempInPub information. | |
| PermissionsTransactionalEmailSend | Bool | Field containing PermissionsTransactionalEmailSend information. | |
| PermissionsViewPrivateStaticResources | Bool | Field containing PermissionsViewPrivateStaticResources information. | |
| PermissionsCreateLtngTempFolder | Bool | Field containing PermissionsCreateLtngTempFolder information. | |
| PermissionsApexRestServices | Bool | Field containing PermissionsApexRestServices information. | |
| PermissionsEnableCommunityAppLauncher | Bool | Field containing PermissionsEnableCommunityAppLauncher information. | |
| PermissionsGiveRecognitionBadge | Bool | Field containing PermissionsGiveRecognitionBadge information. | |
| PermissionsSalesforceIQInternal | Bool | Field containing PermissionsSalesforceIQInternal information. | |
| PermissionsUseMySearch | Bool | Field containing PermissionsUseMySearch information. | |
| PermissionsLtngPromoReserved01UserPerm | Bool | Field containing PermissionsLtngPromoReserved01UserPerm information. | |
| PermissionsManageSubscriptions | Bool | Field containing PermissionsManageSubscriptions information. | |
| PermissionsWaveManagePrivateAssetsUser | Bool | Field containing PermissionsWaveManagePrivateAssetsUser information. | |
| PermissionsCanEditDataPrepRecipe | Bool | Field containing PermissionsCanEditDataPrepRecipe information. | |
| PermissionsAddAnalyticsRemoteConnections | Bool | Field containing PermissionsAddAnalyticsRemoteConnections information. | |
| PermissionsManageSurveys | Bool | Field containing PermissionsManageSurveys information. | |
| PermissionsUseAssistantDialog | Bool | Field containing PermissionsUseAssistantDialog information. | |
| PermissionsUseQuerySuggestions | Bool | Field containing PermissionsUseQuerySuggestions information. | |
| PermissionsRecordVisibilityAPI | Bool | Field containing PermissionsRecordVisibilityAPI information. | |
| PermissionsViewRoles | Bool | Field containing PermissionsViewRoles information. | |
| PermissionsCanManageMaps | Bool | Field containing PermissionsCanManageMaps information. | |
| PermissionsLMOutboundMessagingUserPerm | Bool | Field containing PermissionsLMOutboundMessagingUserPerm information. | |
| PermissionsModifyDataClassification | Bool | Field containing PermissionsModifyDataClassification information. | |
| PermissionsPrivacyDataAccess | Bool | Field containing PermissionsPrivacyDataAccess information. | |
| PermissionsQueryAllFiles | Bool | Field containing PermissionsQueryAllFiles information. | |
| PermissionsModifyMetadata | Bool | Field containing PermissionsModifyMetadata information. | |
| PermissionsManageCMS | Bool | Field containing PermissionsManageCMS information. | |
| PermissionsSandboxTestingInCommunityApp | Bool | Field containing PermissionsSandboxTestingInCommunityApp information. | |
| PermissionsCanEditPrompts | Bool | Field containing PermissionsCanEditPrompts information. | |
| PermissionsViewUserPII | Bool | Field containing PermissionsViewUserPII information. | |
| PermissionsManageHubConnections | Bool | Field containing PermissionsManageHubConnections information. | |
| PermissionsB2BMarketingAnalyticsUser | Bool | Field containing PermissionsB2BMarketingAnalyticsUser information. | |
| PermissionsTraceXdsQueries | Bool | Field containing PermissionsTraceXdsQueries information. | |
| PermissionsViewSecurityCommandCenter | Bool | Field containing PermissionsViewSecurityCommandCenter information. | |
| PermissionsManageSecurityCommandCenter | Bool | Field containing PermissionsManageSecurityCommandCenter information. | |
| PermissionsViewAllCustomSettings | Bool | Field containing PermissionsViewAllCustomSettings information. | |
| PermissionsViewAllForeignKeyNames | Bool | Field containing PermissionsViewAllForeignKeyNames information. | |
| PermissionsAddWaveNotificationRecipients | Bool | Field containing PermissionsAddWaveNotificationRecipients information. | |
| PermissionsHeadlessCMSAccess | Bool | Field containing PermissionsHeadlessCMSAccess information. | |
| PermissionsUseOrderManagementAPIs | Bool | Field containing PermissionsUseOrderManagementAPIs information. | |
| PermissionsEditUnmanagedOrderSummaries | Bool | Field containing PermissionsEditUnmanagedOrderSummaries information. | |
| PermissionsLMEndMessagingSessionUserPerm | Bool | Field containing PermissionsLMEndMessagingSessionUserPerm information. | |
| PermissionsConsentApiUpdate | Bool | Date associated with PermissionsConsentApiUp. | |
| PermissionsPaymentsAPIUser | Bool | Field containing PermissionsPaymentsAPIUser information. | |
| PermissionsAccessContentBuilder | Bool | Field containing PermissionsAccessContentBuilder information. | |
| PermissionsAccountSwitcherUser | Bool | Field containing PermissionsAccountSwitcherUser information. | |
| PermissionsViewAnomalyEvents | Bool | Field containing PermissionsViewAnomalyEvents information. | |
| PermissionsManageC360AConnections | Bool | Field containing PermissionsManageC360AConnections information. | |
| PermissionsManageReleaseUpdates | Bool | Field containing PermissionsManageReleaseUpdates information. | |
| PermissionsViewAllProfiles | Bool | Field containing PermissionsViewAllProfiles information. | |
| PermissionsSkipIdentityConfirmation | Bool | Field containing PermissionsSkipIdentityConfirmation information. | |
| PermissionsLearningManager | Bool | Field containing PermissionsLearningManager information. | |
| PermissionsSendCustomNotifications | Bool | Field containing PermissionsSendCustomNotifications information. | |
| PermissionsPackaging2Delete | Bool | Field containing PermissionsPackaging2Delete information. | |
| PermissionsUseOmnichannelInventoryAPIs | Bool | Field containing PermissionsUseOmnichannelInventoryAPIs information. | |
| PermissionsViewRestrictionAndScopingRules | Bool | Field containing PermissionsViewRestrictionAndScopingRules information. | |
| PermissionsFSCComprehensiveUserAccess | Bool | Field containing PermissionsFSCComprehensiveUserAccess information. | |
| PermissionsMarketingAdmin | Bool | Field containing PermissionsMarketingAdmin information. | |
| PermissionsBotManageBots | Bool | Field containing PermissionsBotManageBots information. | |
| PermissionsBotManageBotsTrainingData | Bool | Field containing PermissionsBotManageBotsTrainingData information. | |
| PermissionsEditDeliveryInformation | Bool | Field containing PermissionsEditDeliveryInformation information. | |
| PermissionsOmnichannelInventorySync | Bool | Field containing PermissionsOmnichannelInventorySync information. | |
| PermissionsManageLearningReporting | Bool | Field containing PermissionsManageLearningReporting information. | |
| PermissionsIsotopeCToCUser | Bool | Field containing PermissionsIsotopeCToCUser information. | |
| PermissionsManagePreferenceCenter | Bool | Field containing PermissionsManagePreferenceCenter information. | |
| PermissionsCanAccessCE | Bool | Field containing PermissionsCanAccessCE information. | |
| PermissionsIsotopeAccess | Bool | Field containing PermissionsIsotopeAccess information. | |
| PermissionsIsotopeLEX | Bool | Field containing PermissionsIsotopeLEX information. | |
| PermissionsQuipMetricsAccess | Bool | Field containing PermissionsQuipMetricsAccess information. | |
| PermissionsQuipUserEngagementMetrics | Bool | Field containing PermissionsQuipUserEngagementMetrics information. | |
| PermissionsTransactionSecurityExempt | Bool | Field containing PermissionsTransactionSecurityExempt information. | |
| PermissionsManageExternalConnections | Bool | Field containing PermissionsManageExternalConnections information. | |
| PermissionsUseSubscriptionEmails | Bool | Field containing PermissionsUseSubscriptionEmails information. | |
| PermissionsManageEmailContent | Bool | Field containing PermissionsManageEmailContent information. | |
| PermissionsAutomateEmailContent | Bool | Field containing PermissionsAutomateEmailContent information. | |
| PermissionsAIViewInsightObjects | Bool | Field containing PermissionsAIViewInsightObjects information. | |
| PermissionsAICreateInsightObjects | Bool | Field containing PermissionsAICreateInsightObjects information. | |
| PermissionsViewMLModels | Bool | Field containing PermissionsViewMLModels information. | |
| PermissionsLifecycleManagementAPIUser | Bool | Field containing PermissionsLifecycleManagementAPIUser information. | |
| PermissionsLeadScoreResultPublisher | Bool | Field containing PermissionsLeadScoreResultPublisher information. | |
| PermissionsManageGlobalPrivacyCenterVO | Bool | Field containing PermissionsManageGlobalPrivacyCenterVO information. | |
| PermissionsNativeWebviewScrolling | Bool | Field containing PermissionsNativeWebviewScrolling information. | |
| PermissionsViewDeveloperName | Bool | Field containing PermissionsViewDeveloperName information. | |
| PermissionsBypassMFAForUiLogins | Bool | Field containing PermissionsBypassMFAForUiLogins information. | |
| PermissionsClientSecretRotation | Bool | Field containing PermissionsClientSecretRotation information. | |
| PermissionsUseOrderSummaryCreateAPI | Bool | Field containing PermissionsUseOrderSummaryCreateAPI information. | |
| PermissionsAccessToServiceProcess | Bool | Field containing PermissionsAccessToServiceProcess information. | |
| PermissionsManageOrchInstsAndWorkItems | Bool | Field containing PermissionsManageOrchInstsAndWorkItems information. | |
| PermissionsCMSECEAuthoringAccess | Bool | Field containing PermissionsCMSECEAuthoringAccess information. | |
| PermissionsManageDataspaceScope | Bool | Field containing PermissionsManageDataspaceScope information. | |
| PermissionsConfigureDataspaceScope | Bool | Field containing PermissionsConfigureDataspaceScope information. | |
| PermissionsManageCampaigns | Bool | Field containing PermissionsManageCampaigns information. | |
| PermissionsViewClientSecret | Bool | Field containing PermissionsViewClientSecret information. | |
| PermissionsCdcReportingCreateReports | Bool | Field containing PermissionsCdcReportingCreateReports information. | |
| PermissionsCdcReportingViewReports | Bool | Field containing PermissionsCdcReportingViewReports information. | |
| PermissionsCdcReportingManageFolders | Bool | Field containing PermissionsCdcReportingManageFolders information. | |
| PermissionsExternalClientAppDeveloper | Bool | Field containing PermissionsExternalClientAppDeveloper information. | |
| PermissionsExternalClientAppAdmin | Bool | Field containing PermissionsExternalClientAppAdmin information. | |
| PermissionsExternalClientAppViewer | Bool | Field containing PermissionsExternalClientAppViewer information. | |
| PermissionsOmnichannelInventoryBasic | Bool | Field containing PermissionsOmnichannelInventoryBasic information. | |
| PermissionsDeleteCrMemoAndInvoice | Bool | Field containing PermissionsDeleteCrMemoAndInvoice information. | |
| PermissionsEmbeddedMessagingAgent | Bool | Field containing PermissionsEmbeddedMessagingAgent information. | |
| PermissionsViewNonSetupFlow | Bool | Field containing PermissionsViewNonSetupFlow information. | |
| PermissionsCreateEditNonSetupFlow | Bool | Field containing PermissionsCreateEditNonSetupFlow information. | |
| PermissionsDeleteNonSetupFlow | Bool | Field containing PermissionsDeleteNonSetupFlow information. | |
| PermissionsActivateDeactivateNonSetupFlow | Bool | Field containing PermissionsActivateDeactivateNonSetupFlow information. | |
| PermissionsAddDecisionElmntNonSetupFlow | Bool | Field containing PermissionsAddDecisionElmntNonSetupFlow information. | |
| PermissionsAddCreaRecElmntToNonSetupFlow | Bool | Field containing PermissionsAddCreaRecElmntToNonSetupFlow information. | |
| PermissionsAddWaitToNonSetupFlow | Bool | Field containing PermissionsAddWaitToNonSetupFlow information. | |
| PermissionsManageNamedCredentials | Bool | Field containing PermissionsManageNamedCredentials information. | |
| PermissionsAddUpdtRecElmntToNonSetupFlow | Bool | Field containing PermissionsAddUpdtRecElmntToNonSetupFlow information. | |
| PermissionsEditManagedOrderSummaries | Bool | Field containing PermissionsEditManagedOrderSummaries information. | |
| PermissionsCanInitiateMessagingSessions | Bool | Field containing PermissionsCanInitiateMessagingSessions information. | |
| PermissionsAuthorizePayments | Bool | Field containing PermissionsAuthorizePayments information. | |
| PermissionsCaptureAndReversePayments | Bool | Field containing PermissionsCaptureAndReversePayments information. | |
| PermissionsCombAuthAndCapPayments | Bool | Field containing PermissionsCombAuthAndCapPayments information. | |
| PermissionsRefundPayments | Bool | Field containing PermissionsRefundPayments information. | |
| PermissionsViewPayments | Bool | Field containing PermissionsViewPayments information. | |
| PermissionsMakePayments | Bool | Field containing PermissionsMakePayments information. | |
| PermissionsManageDataMaskPolicies | Bool | Field containing PermissionsManageDataMaskPolicies information. | |
| PermissionsCanUpdateEmailMessage | Bool | Field containing PermissionsCanUpdateEmailMessage information. | |
| PermissionsDownloadPackageVersionZips | Bool | Field containing PermissionsDownloadPackageVersionZips information. | |
| PermissionsViewContentTaxonomy | Bool | Field containing PermissionsViewContentTaxonomy information. | |
| PermissionsManageContentTaxonomy | Bool | Field containing PermissionsManageContentTaxonomy information. | |
| PermissionsReassignOrchestrationWorkItems | Bool | Field containing PermissionsReassignOrchestrationWorkItems information. | |
| PermissionsManageOrchestrationRuns | Bool | Field containing PermissionsManageOrchestrationRuns information. | |
| PermissionsDigitalLendingUser | Bool | Field containing PermissionsDigitalLendingUser information. | |
| PermissionsSendEmail | Bool | Field containing PermissionsSendEmail information. | |
| PermissionsPreviewTestSendEmail | Bool | Field containing PermissionsPreviewTestSendEmail information. | |
| PermissionsManageEmailMessagingSetup | Bool | Field containing PermissionsManageEmailMessagingSetup information. | |
| PermissionsViewEmailMessagingSetup | Bool | Field containing PermissionsViewEmailMessagingSetup information. | |
| PermissionsManageCertificatesExpiration | Bool | Field containing PermissionsManageCertificatesExpiration information. | |
| PermissionsEnableIPFSUpload | Bool | Field containing PermissionsEnableIPFSUpload information. | |
| PermissionsEnableBCTransactionPolling | Bool | Field containing PermissionsEnableBCTransactionPolling information. | |
| PermissionsLobbyManagementUserAccess | Bool | Field containing PermissionsLobbyManagementUserAccess information. | |
| PermissionsUMAWebTrackingSetup | Bool | Field containing PermissionsUMAWebTrackingSetup information. | |
| PermissionsAddGetRecElmntToNonSetupFlow | Bool | Field containing PermissionsAddGetRecElmntToNonSetupFlow information. | |
| PermissionsAddLoopElmntToNonSetupFlow | Bool | Field containing PermissionsAddLoopElmntToNonSetupFlow information. | |
| PermissionsAddAsgntElmntToNonSetupFlow | Bool | Field containing PermissionsAddAsgntElmntToNonSetupFlow information. | |
| PermissionsAddSubflowElmntToNonSetupFlow | Bool | Field containing PermissionsAddSubflowElmntToNonSetupFlow information. | |
| PermissionsMonitorLoginHistory | Bool | Field containing PermissionsMonitorLoginHistory information. | |
| PermissionsAddCollFltrElmntToNonSetupFlow | Bool | Field containing PermissionsAddCollFltrElmntToNonSetupFlow information. | |
| PermissionsAddCollSrtElmntToNonSetupFlow | Bool | Field containing PermissionsAddCollSrtElmntToNonSetupFlow information. | |
| PermissionsAddDelRecElmntToNonSetupFlow | Bool | Field containing PermissionsAddDelRecElmntToNonSetupFlow information. | |
| PermissionsOpportunityInfluence | Bool | Field containing PermissionsOpportunityInfluence information. | |
| PermissionsConsentBannerSettingsSetup | Bool | Field containing PermissionsConsentBannerSettingsSetup information. | |
| PermissionsEnhancedSalesMobileExp | Bool | Field containing PermissionsEnhancedSalesMobileExp information. | |
| PermissionsCanViewDataPrepRecipe | Bool | Field containing PermissionsCanViewDataPrepRecipe information. | |
| PermissionsSimpleCsvDataImportUser | Bool | Field containing PermissionsSimpleCsvDataImportUser information. | |
| PermissionsAdvancedCsvDataImportUser | Bool | Field containing PermissionsAdvancedCsvDataImportUser information. | |
| PermissionsUmaQueryCMSEmailContent | Bool | Field containing PermissionsUmaQueryCMSEmailContent information. | |
| PermissionsAccessToComplaintMgmt | Bool | Field containing PermissionsAccessToComplaintMgmt information. | |
| PermissionsAccessToDisputeManagement | Bool | Field containing PermissionsAccessToDisputeManagement information. | |
| PermissionsUMAStandaloneUserPerm | Bool | Field containing PermissionsUMAStandaloneUserPerm information. | |
| PermissionsPersonalizedFinanceUserAccess | Bool | Field containing PermissionsPersonalizedFinanceUserAccess information. | |
| PermissionsUmaEditConsentSettings | Bool | Field containing PermissionsUmaEditConsentSettings information. | |
| PermissionsCustomAppsOnFSMobile | Bool | Field containing PermissionsCustomAppsOnFSMobile information. | |
| PermissionsStageManagementDesignUser | Bool | Field containing PermissionsStageManagementDesignUser information. | |
| PermissionsSegmentIntelligenceUser | Bool | Field containing PermissionsSegmentIntelligenceUser information. | |
| PermissionsFSCArcGraphCommunityUser | Bool | Field containing PermissionsFSCArcGraphCommunityUser information. | |
| PermissionsManageCdpMlModels | Bool | Field containing PermissionsManageCdpMlModels information. | |
| PermissionsDigitalLendingAdminUser | Bool | Field containing PermissionsDigitalLendingAdminUser information. | |
| PermissionsActivateSystemModeFlows | Bool | Field containing PermissionsActivateSystemModeFlows information. | |
| PermissionsViewAllNonSetupFlows | Bool | Field containing PermissionsViewAllNonSetupFlows information. | |
| PermissionsMcScoringRulesConfig | Bool | Field containing PermissionsMcScoringRulesConfig information. | |
| PermissionsPersonalizationPlatform | Bool | Field containing PermissionsPersonalizationPlatform information. | |
| PermissionsLeadInspectorUser | Bool | Field containing PermissionsLeadInspectorUser information. | |
| PermissionsContactInspectorUser | Bool | Field containing PermissionsContactInspectorUser information. | |
| PermissionsManageIntegrationConnections | Bool | Field containing PermissionsManageIntegrationConnections information. | |
| PermissionsTableauCreateDashboard | Bool | Field containing PermissionsTableauCreateDashboard information. | |
| PermissionsTableauViewDashboard | Bool | Field containing PermissionsTableauViewDashboard information. | |
| PermissionsEinsteinCopilotUser | Bool | Field containing PermissionsEinsteinCopilotUser information. | |
| PermissionsEinsteinCopilotBuilder | Bool | Field containing PermissionsEinsteinCopilotBuilder information. | |
| PermissionsUseCreateOrderSummary | Bool | Field containing PermissionsUseCreateOrderSummary information. | |
| PermissionsUseCreateCreditMemo | Bool | Field containing PermissionsUseCreateCreditMemo information. | |
| PermissionsUseEnsureFunds | Bool | Field containing PermissionsUseEnsureFunds information. | |
| PermissionsUseOrderItemSummaryCancel | Bool | Field containing PermissionsUseOrderItemSummaryCancel information. | |
| PermissionsUseOrderItemSummaryReturn | Bool | Field containing PermissionsUseOrderItemSummaryReturn information. | |
| PermissionsManageFilesAndAttachments | Bool | Field containing PermissionsManageFilesAndAttachments information. | |
| PermissionsAddTrfmElmntToNonSetupFlow | Bool | Field containing PermissionsAddTrfmElmntToNonSetupFlow information. | |
| PermissionsMobileMessagingAgent | Bool | Field containing PermissionsMobileMessagingAgent information. | |
| PermissionsTableauCreateVisualization | Bool | Field containing PermissionsTableauCreateVisualization information. | |
| PermissionsTableauViewVisualization | Bool | Field containing PermissionsTableauViewVisualization information. | |
| PermissionsManageCustomDomains | Bool | Field containing PermissionsManageCustomDomains information. | |
| PermissionsEngagementConfigUser | Bool | Field containing PermissionsEngagementConfigUser information. | |
| PermissionsPersonalizationIntelUser | Bool | Field containing PermissionsPersonalizationIntelUser information. | |
| PermissionsAttributionModelUser | Bool | Field containing PermissionsAttributionModelUser information. | |
| PermissionsTableauCreateWorkspace | Bool | Field containing PermissionsTableauCreateWorkspace information. | |
| PermissionsTableauViewWorkspace | Bool | Field containing PermissionsTableauViewWorkspace information. | |
| PermissionsManageBriefs | Bool | Field containing PermissionsManageBriefs information. | |
| PermissionsSalesInsightsUser | Bool | Field containing PermissionsSalesInsightsUser information. | |
| PermissionsCanSendInitialSMSToIndividual | Bool | Field containing PermissionsCanSendInitialSMSToIndividual information. | |
| PermissionsAccessDisputePrompts | Bool | Field containing PermissionsAccessDisputePrompts information. | |
| PermissionsQueryNonVetoedFiles | Bool | Field containing PermissionsQueryNonVetoedFiles information. | |
| PermissionsMetadataStudioUser | Bool | Field containing PermissionsMetadataStudioUser information. | |
| PermissionsAddPathExprmElmntNonSetupFlow | Bool | Field containing PermissionsAddPathExprmElmntNonSetupFlow information. | |
| PermissionsDigitalLendingWorkbench | Bool | Field containing PermissionsDigitalLendingWorkbench information. | |
| PermissionsDigitalLendingEditReadOnly | Bool | Field containing PermissionsDigitalLendingEditReadOnly information. | |
| PermissionsUseCanCancelInProgressChange | Bool | Field containing PermissionsUseCanCancelInProgressChange information. | |
| PermissionsPrmExtIntPrtnrAdminUser | Bool | Field containing PermissionsPrmExtIntPrtnrAdminUser information. | |
| PermissionsEinsteinAgentPlatformBuilder | Bool | Field containing PermissionsEinsteinAgentPlatformBuilder information. | |
| PermissionsUseServicePartReturn | Bool | Field containing PermissionsUseServicePartReturn information. | |
| PermissionsViewUMACalendar | Bool | Field containing PermissionsViewUMACalendar information. | |
| PermissionsHeadlessPublishNudges | Bool | Field containing PermissionsHeadlessPublishNudges information. | |
| PermissionsApprovalAdmin | Bool | Field containing PermissionsApprovalAdmin information. | |
| PermissionsApprovalDesigner | Bool | Field containing PermissionsApprovalDesigner information. | |
| PermissionsAccessServiceEinstein | Bool | Field containing PermissionsAccessServiceEinstein information. | |
| PermissionsViewRecommendations | Bool | Field containing PermissionsViewRecommendations information. | |
| PermissionsPrismPlaygroundUser | Bool | Field containing PermissionsPrismPlaygroundUser information. | |
| PermissionsModifyAllPolicyCenterPolicies | Bool | Field containing PermissionsModifyAllPolicyCenterPolicies information. | |
| PermissionsViewAllPolicyCenterPolicies | Bool | Field containing PermissionsViewAllPolicyCenterPolicies information. | |
| PermissionsAccessSfDrive | Bool | Field containing PermissionsAccessSfDrive information. | |
| PermissionsAppFrameworkManageApp | Bool | Field containing PermissionsAppFrameworkManageApp information. | |
| PermissionsAppFrameworkViewApp | Bool | Field containing PermissionsAppFrameworkViewApp information. | |
| PermissionsMCGSetupUserPerm | Bool | Field containing PermissionsMCGSetupUserPerm information. | |
| PermissionsAgentforceServiceAgentUser | Bool | Field containing PermissionsAgentforceServiceAgentUser information. | |
| PermissionsManageAgentforceServiceAgent | Bool | Field containing PermissionsManageAgentforceServiceAgent information. | |
| PermissionsCanTranslateScrt2Conversation | Bool | Field containing PermissionsCanTranslateScrt2Conversation information. | |
| PermissionsSlackFromTableau | Bool | Field containing PermissionsSlackFromTableau information. | |
| PermissionsTableauShareSnapshot | Bool | Field containing PermissionsTableauShareSnapshot information. | |
| PermissionsAccessBankingServiceAgent | Bool | Field containing PermissionsAccessBankingServiceAgent information. | |
| PermissionsPrismBackofficeUser | Bool | Field containing PermissionsPrismBackofficeUser information. | |
| PermissionsPersonalizationDecisioningUser | Bool | Field containing PermissionsPersonalizationDecisioningUser information. | |
| PermissionsAccessBankingRelationshipAssistance | Bool | Field containing PermissionsAccessBankingRelationshipAssistance information. | |
| PermissionsCanMarketingUserDebugFlow | Bool | Field containing PermissionsCanMarketingUserDebugFlow information. | |
| PermissionsCanDoActAsUser | Bool | Field containing PermissionsCanDoActAsUser information. | |
| PermissionsViewAllFieldsGlobal | Bool | Field containing PermissionsViewAllFieldsGlobal information. | |
| PermissionsManageHerokuAppLink | Bool | Field containing PermissionsManageHerokuAppLink information. | |
| PermissionsUserHasSendToListFilterAccess | Bool | Field containing PermissionsUserHasSendToListFilterAccess information. | |
| PermissionsMngBenVerfForAssistiveAgnt | Bool | Field containing PermissionsMngBenVerfForAssistiveAgnt information. | |
| PermissionsCreateModDGTrigNonSetupFlow | Bool | Field containing PermissionsCreateModDGTrigNonSetupFlow information. | |
| PermissionsAccessPolicyAgent | Bool | Field containing PermissionsAccessPolicyAgent information. | |
| PermissionsMCPMetadataApi | Bool | Field containing PermissionsMCPMetadataApi information. | |
| PermissionsAppFrameworkManageTemplate | Bool | Field containing PermissionsAppFrameworkManageTemplate information. | |
| PermissionsDigitalAgentUser | Bool | Field containing PermissionsDigitalAgentUser information. | |
| PermissionsAccessWealthAdvisorAgent | Bool | Field containing PermissionsAccessWealthAdvisorAgent information. | |
| PermissionsCanApproveUninstalledApps | Bool | Field containing PermissionsCanApproveUninstalledApps information. | |
| PermissionsSetupAgentBuilder | Bool | Field containing PermissionsSetupAgentBuilder information. | |
| PermissionsSetupAgentUser | Bool | Field containing PermissionsSetupAgentUser information. | |
| PermissionsUserCanDeployStore | Bool | Field containing PermissionsUserCanDeployStore information. | |
| PermissionsModifyAccessDenyPolicies | Bool | Field containing PermissionsModifyAccessDenyPolicies information. | |
| PermissionsManageAccessPolicies | Bool | Field containing PermissionsManageAccessPolicies information. | |
| PermissionsViewAccessPolicies | Bool | Field containing PermissionsViewAccessPolicies information. | |
| PermissionsModifyAccessAllowPolicies | Bool | Field containing PermissionsModifyAccessAllowPolicies information. | |
| PermissionsViewOrchestrationsInAutomApp | Bool | Field containing PermissionsViewOrchestrationsInAutomApp information. | |
| PermissionsTerritoryOperations | Bool | Field containing PermissionsTerritoryOperations information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Tracks record-level access permissions for users, defining which records they can view or edit.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the user record access entry. | |
| UserId | String |
User.Id | Identifier of the user whose access permissions are being defined. |
| RecordId | String | Identifier of the specific record the access permissions apply to. | |
| HasReadAccess | Bool | Indicates whether the user has permission to view the record. | |
| HasEditAccess | Bool | Indicates whether the user has permission to modify the record. | |
| HasDeleteAccess | Bool | Indicates whether the user has permission to delete the record. | |
| HasTransferAccess | Bool | Indicates whether the user can transfer ownership of the record. | |
| HasAllAccess | Bool | Indicates whether the user has full access to the record, including read, write, delete, and transfer. | |
| MaxAccessLevel | String | Highest level of access the user has to the record, such as Read, Edit, or Full. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for UserSetupEntityAccess.
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | ID of the Durable associated with this record. | |
| SetupEntityId | String | ID of the SetupEntity associated with this record. | |
| KeyPrefix | String | Field containing KeyPrefix information. | |
| DeveloperName | String | The unique name used by the API and managed packages. | |
| NamespacePrefix | String | The namespace prefix associated with this object. | |
| LastCacheUpdate | Datetime | Date associated with LastCacheUp. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |
Schema file for VerificationHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| EventGroup | Int | Field containing EventGroup information. | |
| VerificationTime | Datetime | Field containing VerificationTime information. | |
| VerificationMethod | String | Field containing VerificationMethod information. | |
| UserId | String |
User.Id | ID of the User associated with this record. |
| Activity | String | Field containing Activity information. | |
| Status | String | Status of the record. | |
| LoginHistoryId | String |
LoginHistory.Id | ID of the related login history record. |
| SourceIp | String | IP address from which the request originated. | |
| LoginGeoId | String |
LoginGeo.Id | ID of the LoginGeo associated with this record. |
| Remarks | String | Field containing Remarks information. | |
| ResourceId | String | ID of the Resource associated with this record. | |
| Policy | String | Field containing Policy information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for VisualforceAccessMetrics.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MetricsDate | Date | Date associated with Metrics. | |
| ApexPageId | String |
ApexPage.Id | ID of the ApexPage associated with this record. |
| ProfileId | String |
Profile.Id | ID of the Profile associated with this record. |
| DailyPageViewCount | Int | Number of DailyPageView associated with this record. | |
| LogDate | Date | Date associated with Log. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. |
Schema file for WaveCompatibilityCheckItem.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| Name | String | Name of the record. | |
| CurrencyIsoCode | String | ISO code for the currency in which the revenue amount is expressed. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| TaskName | String | Field containing TaskName information. | |
| TaskResult | String | Field containing TaskResult information. | |
| TemplateApiName | String | Field containing TemplateApiName information. | |
| TemplateVersion | String | Field containing TemplateVersion information. | |
| Payload | String | Field containing Payload information. | |
| WaveAutoInstallRequestId | String | ID of the WaveAutoInstallRequest associated with this record. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for WorkOrderHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| WorkOrderId | String |
WorkOrder.Id | ID of the WorkOrder associated with this record. |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for WorkOrderLineItemHistory.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| IsDeleted | Bool | Indicates whether the record has been moved to the Recycle Bin. | |
| WorkOrderLineItemId | String | ID of the WorkOrderLineItem associated with this record. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| CreatedByIdType | String | Specifies the type of the 'CreatedById' polymorphic field to use in the statement. | |
| CreatedByIdExternalFieldName | String | Specifies the external field name of the 'CreatedById' polymorphic field to use in an INSERT/UPDATE/UPSERT statement | |
| Field | String | Field containing Field information. | |
| DataType | String | Type classification for Data. | |
| OldValue | String | Field containing OldValue information. | |
| NewValue | String | Field containing NewValue information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for WorkOrderLineItemStatus.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Field containing SortOrder information. | |
| IsDefault | Bool | Indicates whether the record has the Default characteristic. | |
| StatusCode | String | Field containing StatusCode information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Schema file for WorkOrderStatus.
| Name | Type | References | Description |
| Id [KEY] | String | Unique identifier for the record. | |
| MasterLabel | String | The custom object label that appears in the user interface. | |
| ApiName | String | The name used when accessing the resource using the API. | |
| SortOrder | Int | Field containing SortOrder information. | |
| IsDefault | Bool | Indicates whether the record has the Default characteristic. | |
| StatusCode | String | Field containing StatusCode information. | |
| CreatedById | String |
User.Id | ID of the user who created the record. |
| LastModifiedById | String |
User.Id | ID of the user who last modified the record. |
| LastModifiedDate | Datetime | Date and time when the record was last modified. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | Date and time when the record was last modified by a user or by an automated process. | |
| CreatedDate | Datetime | Date and time when the record was created. |
Stored procedures are function-like interfaces that extend the functionality of the Cloud beyond simple SELECT/INSERT/UPDATE/DELETE operations with Salesforce.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Salesforce, along with an indication of whether the procedure succeeded or failed.
| Name | Description |
| AbortJob | Terminates an active Salesforce job before completion. |
| CloseJob | Closes a Salesforce job to indicate it is complete and no longer accepting new data. |
| CloseJobV2 | Closes or aborts a Salesforce job based on its current state. |
| ConvertLead | Converts a Lead record into an Account, Contact, and optionally an Opportunity. |
| CreateBatch | Creates a batch job in Salesforce for bulk processing of records. |
| CreateCustomField | Adds a new custom field to a specified Salesforce object. |
| CreateJob | Initiates a new Salesforce job for processing bulk data operations. |
| CreateJobV2 | Creates a new job for asynchronous data processing in Salesforce, supporting bulk API operations. |
| DeleteJobV2 | Deletes a job in Salesforce, provided it has a status of UploadComplete, JobComplete, Aborted, or Failed. |
| GetBatch | Retrieves details about a specific Salesforce batch job. |
| GetBatchRecords | Fetches the original submitted records of a completed Salesforce batch job. |
| GetBatchResults | Fetches the results of a completed Salesforce batch job. |
| GetDeleted | Returns a list of records deleted within a specified timeframe for a given object. |
| GetJob | Retrieves details about a specific Salesforce job, including its status and associated records. |
| GetJobBatchIds | Fetches batch IDs for all batches associated with a specific Salesforce job. |
| GetJobInfoV2 | Retrieves details of a Salesforce job, including its processing status and metadata. |
| GetLimitInfo | Fetches API usage and limit details for the Salesforce organization. |
| GetUpdated | Returns a list of records updated within a specified timeframe for a given object. |
| GetUserInformation | Fetches personal details of the authenticated Salesforce user. |
| Merge | Combines up to three records of the same type into a single record while preserving relevant data. |
| MetadataDeploy | Deploys metadata components to a Salesforce organization, enabling changes to object structures and configurations. |
| MetadataDeployDetails | Retrieves additional details about a metadata deployment job in Salesforce. |
| MetadataRetrieve | Retrieves metadata components from a Salesforce organization for backup or modification. |
| QueryBatch | Executes a batch query in Salesforce, allowing large dataset retrieval in multiple chunks. |
| QueryParallelResultsV2 | Fetches the results locators in parallel for a query job once the job has completed processing. |
| QueryResultsV2 | Fetches results for a query job once the job has completed processing. |
| Search | Executes a text search in your organization's data. |
| Undelete | Restores records previously deleted and stored in Salesforce's Recycle Bin. |
Terminates an active Salesforce job before completion.
| Name | Type | Description |
| JobId | String | Unique identifier of the Salesforce Bulk API job to be aborted. |
| Name | Type | Description |
| ID | String | Unique ID of the aborted job returned by Salesforce. |
| JobID | String | Alias for the job ID of the aborted operation. |
| ObjectName | String | Name of the Salesforce object (such as Account, Lead, or Contact) associated with the job. |
| Operation | String | Type of data operation the job was executing, such as insert, update, upsert, delete, or query. |
| ApiVersion | String | API version used when the job was created. Determines field availability and behavior. |
| ApexProcessingTime | String | Total time in milliseconds spent running Apex triggers and automation for the job's records. Available from API version 19.0 onward. |
| ApiActiveProcessingTime | String | Total time in milliseconds Salesforce actively processed the job, excluding wait time and serialization overhead. Includes ApexProcessingTime. |
| AssignmentRuleId | String | ID of the assignment rule used for lead or case routing in the job, if applicable. |
| ConcurrencyMode | String | Specifies whether the job was processed in 'parallel' or 'serial' mode, affecting record lock behavior. |
| ContentType | String | Format of data submitted in the job. Valid values include CSV, XML, ZIP_CSV, and ZIP_XML. |
| CreatedById | String | ID of the Salesforce user who initiated the job. |
| CreatedDate | String | Timestamp when the job was created in Salesforce. |
| ExternalIdFieldName | String | Field used as an external ID during upsert operations to match existing records. |
| NumberBatchesCompleted | String | Number of batches in the job that have finished processing successfully. |
| NumberBatchesQueued | String | Number of batches currently waiting in the queue to be processed. |
| NumberBatchesFailed | String | Number of batches in the job that failed during processing. |
| NumberBatchesInProgress | String | Number of batches currently being processed. |
| NumberBatchesTotal | String | Total number of batches submitted to the job. Finalized when job is closed or failed. |
| NumberRecordsFailed | String | Total number of records that failed processing across all batches. Available from API version 19.0 onward. |
| NumberRecordsProcessed | String | Total number of records successfully processed so far in the job. |
| NumberRetries | String | Number of retry attempts Salesforce made due to temporary issues, such as record locks. |
| State | String | Current state of the job. Possible values include Open, Closed, Aborted, or Failed. |
| SystemModStamp | String | UTC timestamp of the last modification to the job, typically when it finished processing. |
| TotalProcessingTime | String | Total processing time in milliseconds for all job batches combined. Available from API version 19.0 onward. |
Closes a Salesforce job to indicate it is complete and no longer accepting new data.
| Name | Type | Description |
| JobId | String | Unique identifier of the Salesforce Bulk API job that is being closed to prevent submission of additional batches. |
| Name | Type | Description |
| ID | String | Unique ID of the closed job returned by Salesforce. |
| JobID | String | Alias for the job ID, confirming the job that was closed. |
| ObjectName | String | API name of the Salesforce object involved in the job, such as Account, Lead, or Contact. |
| Operation | String | Type of operation the job was performing, such as insert, update, upsert, delete, query, or hardDelete. |
| ApiVersion | String | Version of the Salesforce API used when the job was created. Determines available features and fields. |
| ApexProcessingTime | String | Cumulative milliseconds spent executing Apex triggers and automation logic across all job batches. Excludes asynchronous Apex. Available from API version 19.0 onward. |
| ApiActiveProcessingTime | String | Total active processing time in milliseconds, including Apex execution but excluding wait time and serialization. Available from API version 19.0 onward. |
| AssignmentRuleId | String | ID of the assignment rule used in case or lead routing during the job execution. |
| ConcurrencyMode | String | Specifies whether the job was processed in 'parallel' or 'serial' mode, affecting how records are locked and processed. |
| ContentType | String | File format used for job data. Valid values include CSV, XML, ZIP_CSV, and ZIP_XML. |
| CreatedById | String | ID of the Salesforce user who created the job. |
| CreatedDate | String | Timestamp indicating when the job was created in Salesforce. |
| ExternalIdFieldName | String | Name of the external ID field used for matching records in upsert operations. |
| NumberBatchesCompleted | String | Total number of batches that completed successfully in the job. |
| NumberBatchesQueued | String | Number of batches currently in queue waiting for processing. |
| NumberBatchesFailed | String | Number of batches that failed during job execution. |
| NumberBatchesInProgress | String | Number of batches actively being processed at the time the job was closed. |
| NumberBatchesTotal | String | Total number of batches submitted to the job. This value is final once the job is closed or failed. |
| NumberRecordsFailed | String | Total number of records that failed processing across all batches. Available from API version 19.0 onward. |
| NumberRecordsProcessed | String | Total number of records successfully processed within the job. |
| NumberRetries | String | Number of retry attempts Salesforce made to save operation results due to temporary issues such as record locks. |
| State | String | Current state of the job after closure. Possible values include Open, Closed, Aborted, or Failed. |
| SystemModStamp | String | UTC timestamp when the job was last modified or completed. |
| TotalProcessingTime | String | Cumulative processing time in milliseconds across all batches. Includes ApexProcessingTime and ApiActiveProcessingTime. Available from API version 19.0 onward. |
Closes or aborts a Salesforce job based on its current state.
| Name | Type | Description |
| JobId | String | Unique identifier of the Salesforce Bulk API v2.0 job that is being closed or aborted. |
| State | String | Specifies the desired final state of the job. Use 'UploadComplete' to mark the job as ready for processing or 'Aborted' to cancel it. This is only applicable for jobs created using UploadJobDataV2.
The allowed values are UploadComplete, Aborted. |
| JobType | String | Type of job being closed. Acceptable values are 'UNKNOWN', 'INGEST' for data import jobs, or 'QUERY' for data retrieval jobs.
The allowed values are UNKNOWN, INGEST, QUERY. The default value is UNKNOWN. |
| Name | Type | Description |
| Closed | String | Indicates whether the job was successfully closed or aborted. Returns 'true' if the operation succeeded. |
Converts a Lead record into an Account, Contact, and optionally an Opportunity.
Note: This procedure makes use of indexed parameters. Indexed parameters facilitate providing multiple instances a single parameter as inputs for the procedure.
Suppose there is an input parameter named Param#. To input multiple instances of an indexed parameter like this, execute:
EXEC ProcedureName Param#1 = "value1", Param#2 = "value2", Param#3 = "value3"
In the table below, indexed parameters are denoted with a '#' character at the end of their names.
| Name | Type | Description |
| AccountId# | String | ID of the existing Account to associate with the converted lead. Required only when merging into an existing account. If omitted, a new Account is created automatically, assuming the user has sufficient access. |
| ContactId# | String | ID of the existing Contact to associate with the converted lead. Must be linked to the specified AccountId. Leave blank when converting to a person account. If omitted, a new Contact is created. |
| ConvertedStatus# | String | Required status to assign to the Lead upon conversion. Must be a valid LeadStatus value where IsConverted is 'true'. Retrieve available values via: SELECT Id, MasterLabel FROM LeadStatus WHERE IsConverted=true. |
| DoNotCreateOpportunity# | String | Set to 'true' to skip opportunity creation during lead conversion. Defaults to 'false', meaning an opportunity is created unless explicitly disabled. |
| LeadId# | String | ID of the Lead record to convert. This is a required field. |
| OpportunityName# | String | Name to assign to the opportunity created during conversion. If omitted, defaults to the Lead's company name. Must be blank if DoNotCreateOpportunity is 'true'. |
| OverwriteLeadSource# | String | Set to 'true' to overwrite the LeadSource field on the resulting Contact with the Lead's LeadSource value. Requires that ContactId is provided. |
| OwnerId# | String | ID of the user who will own the new Account, Contact, and Opportunity records. Defaults to the Lead owner if not specified. Does not affect existing records. |
| SendNotificationEmail# | String | Set to 'true' to send a notification email to the new owner defined by OwnerId. Defaults to 'false'.
The default value is FALSE. |
| Name | Type | Description |
| AccountId | String | ID of the Account record associated with the converted lead, whether newly created or existing. |
| ContactId | String | ID of the Contact record associated with the converted lead, whether newly created or existing. |
| LeadId | String | ID of the original Lead record that was converted. |
| OpportunityId | String | ID of the newly created Opportunity, if one was created during conversion. |
| Success | String | Indicates whether the lead conversion succeeded (true) or failed (false). |
| Errors | String | List of error messages returned by Salesforce if the conversion failed, including error codes and descriptions. |
Creates a batch job in Salesforce for bulk processing of records.
To create a batch, specify the Id of the Job you are adding it to and the XML aggregate of the batch itself. For example, the XML aggregate may resemble the following:
<?xml version="1.0" encoding="UTF-8"?>
<sObjects xmlns="http://www.force.com/2009/06/asyncapi/dataload" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<sObject>
<FirstName>Bill</FirstName>
<LastName>White</LastName>
</sObject>
<sObject>
<FirstName>Bob</FirstName>
<LastName>Black</LastName>
</sObject>
</sObjects>
Note: The objects contained in the XML aggregate must all correspond to the object associated with the Job being used.
| Name | Type | Description |
| JobId | String | ID of the Salesforce Bulk API job that the batch will be added to. This must be a valid, open job. |
| Aggregate | String | Data payload or SOQL query for the batch. Required when submitting records or executing batch queries. |
| ContentType | String | Format of the batch content. Valid values are CSV, XML, ZIP_CSV, and ZIP_XML. For batch queries, use CSV.
The default value is XML. |
| Name | Type | Description |
| ID | String | Unique ID of the created batch within the job. |
| JobID | String | ID of the job that the batch is associated with, confirming linkage after creation. |
| ApexProcessingTime | String | Total time in milliseconds spent executing Apex triggers and automation during batch processing. Excludes asynchronous Apex and is available in API version 19.0 and later. |
| ApiActiveProcessingTime | String | Time in milliseconds spent actively processing the batch, including Apex time but excluding queue time and serialization. Available in API version 19.0 and later. |
| CreatedDate | String | Timestamp in UTC when the batch was created. This reflects submission time, not the start of processing. |
| NumberRecordsFailed | String | Number of records in the batch that failed to process successfully. |
| NumberRecordsProcessed | String | Number of records that were successfully processed in this batch. This value increases as processing progresses. |
| State | String | Current processing status of the batch. Possible values include Queued, InProgress, Completed, Failed, or NotProcessed. |
| StateMessage | String | Descriptive message about the batch state, especially useful when the state is Failed. May include error reasons or diagnostic info. |
| SystemModstamp | String | UTC timestamp when batch processing was completed. Only valid when the batch state is Completed. |
| TotalProcessingTime | String | Total processing time in milliseconds for the batch, excluding queue wait time. Available in API version 19.0 and later. |
Adds a new custom field to a specified Salesforce object.
| Name | Type | Description |
| Label | String | The user-facing label for the new custom field as it will appear in the Salesforce UI. |
| ObjectName | String | The API name of the Salesforce object (such as Account, Contact, or a custom object) to which the custom field will be added. |
| FieldName | String | The API name for the new custom field. This must be unique within the object and typically ends in '__c'. |
| Type | String | Data type of the custom field, such as Text, Number, Date, Picklist, or Checkbox.
The allowed values are Checkbox, Currency, Date, DateTime, Time, Email, Location, Number, Percent, Phone, Picklist, MultiselectPicklist, Text, TextArea, LongTextArea, Url, EncryptedText. |
| Description | String | Optional internal description of the custom field to help users and admins understand its purpose. |
| Required | Boolean | Indicates whether the field must have a value when a record is created or edited (true = required). |
| Unique | Boolean | Specifies whether the field must contain a unique value across all records in the object. |
| ExternalId | Boolean | Marks the field as an External ID, allowing it to be used for record matching in upserts and integrations. |
| DefaultValue | String | Specifies the default value that will populate the field when a new record is created, if no other value is provided. |
| Length | Integer | Maximum number of characters (for text fields) or digits (for numeric fields) that the field can contain. |
| Precision | Integer | Total number of digits allowed in the field, including digits to the left and right of the decimal point (for number fields). |
| Scale | Integer | Number of digits allowed after the decimal point in the field value (for number fields). |
| ValueSet | String | A comma-separated list of allowed values for picklist fields. |
| VisibleLines | Integer | Specifies the number of lines displayed in the UI for long text area fields. |
| MaskType | String | For encrypted text fields, defines how data is masked in the UI, such as 'all', 'last4', or 'none'.
The allowed values are all, creditCard, lastFour, nino, sin, ssn. |
| MaskChar | String | Character used to mask encrypted field values in the UI (such as '*').
The allowed values are asterisk, X. |
| Name | Type | Description |
| FullName | String | The full API name of the newly created custom field, including object prefix (for example, Account.CustomField__c). |
| Success | String | Indicates whether the custom field creation was successful (true) or not (false). |
Initiates a new Salesforce job for processing bulk data operations.
| Name | Type | Description |
| ObjectName | String | API name of the Salesforce object the job will operate on, such as Account, Campaign, or a custom object. |
| Action | String | Specifies the operation the job will perform, such as insert, update, upsert, delete, or query. |
| ConcurrencyMode | String | Defines how batches in the job will be processed. Use 'Parallel' (default) for faster processing or 'Serial' to avoid database contention by processing one batch at a time.
The allowed values are Parallel, Serial. The default value is Parallel. |
| ContentType | String | Format of the job data. Valid values include CSV, XML, ZIP_CSV, and ZIP_XML.
The default value is XML. |
| ExternalIdColumn | String | Name of the external ID field used for matching records during an upsert operation. |
| ChunkSize | String | Recommended for queries on large datasets. Specifies the number of records per batch when splitting a query job into multiple parts. Used only when Action is set to 'query'. |
| Name | Type | Description |
| ID | String | Unique identifier of the newly created job. |
| JobID | String | Alias for the job ID returned after creation. |
| ObjectName | String | Name of the object associated with the job, confirming the object used in the request. |
| Operation | String | Operation type defined for the job, such as query, insert, delete, or upsert. |
| ApiVersion | String | Salesforce API version used when the job was created. Determines which fields and operations are supported. |
| ApexProcessingTime | String | Time in milliseconds spent executing Apex triggers and automation during batch processing. Does not include asynchronous Apex. Available from API version 19.0 onward. |
| ApiActiveProcessingTime | String | Total time actively spent processing the job, excluding queue and serialization time. Includes Apex processing time. Available from API version 19.0 onward. |
| AssignmentRuleId | String | ID of a specific lead or case assignment rule applied during the job's execution. |
| ConcurrencyMode | String | Indicates whether the job used 'parallel' or 'serial' batch processing mode. |
| ContentType | String | Format of the job content used during submission. Confirmed value from the job setup. |
| CreatedById | String | ID of the Salesforce user who created the job. |
| CreatedDate | String | Timestamp when the job was created in the Salesforce system (UTC). |
| ExternalIdFieldName | String | Name of the external ID field used to identify matching records in an upsert operation. |
| NumberBatchesCompleted | String | Total number of batches that have successfully completed processing in the job. |
| NumberBatchesQueued | String | Number of batches that are currently in the job's processing queue. |
| NumberBatchesFailed | String | Number of batches that failed during processing in the job. |
| NumberBatchesInProgress | String | Number of batches actively being processed in the job at the time of the request. |
| NumberBatchesTotal | String | Cumulative total of all batches added to the job. Finalized when the job reaches a terminal state such as Closed or Failed. |
| NumberRecordsFailed | String | Total number of records that failed to process in the job. Available in API version 19.0 and later. |
| NumberRecordsProcessed | String | Total number of records successfully processed in the job so far. |
| NumberRetries | String | Number of retry attempts Salesforce made while saving results, usually due to issues like record locking. |
| State | String | Current state of the job. Possible values include 'Open', 'Closed', 'Aborted', or 'Failed'. |
| SystemModStamp | String | Timestamp (UTC) of the last update or modification made to the job record. |
| TotalProcessingTime | String | Total time in milliseconds spent processing all batches in the job. Does not include queue time. Available in API version 19.0 and later. |
Creates a new job for asynchronous data processing in Salesforce, supporting bulk API operations.
| Name | Type | Description |
| ObjectName | String | API name of the Salesforce object the job will operate on, such as Account, Lead, or Opportunity. |
| Query | String | Salesforce Object Query Language (SOQL) query string to execute for data retrieval. Required only when Action is set to 'query'. |
| Action | String | Specifies the type of operation the job will perform. Valid values are 'insert', 'delete', 'update', 'upsert', or 'query'. |
| ExternalIdColumn | String | API name of the external ID field used to match records for upsert operations. Required for 'upsert' jobs only. |
| ColumnDelimiter | String | Defines the character used to separate columns in the CSV file. Default is 'COMMA'. Other valid values: 'BACKQUOTE', 'CARET', 'PIPE', 'SEMICOLON', 'TAB'. |
| LineEnding | String | Specifies the line break format used in the CSV file. Valid values are 'LF' (Line Feed) and 'CRLF' (Carriage Return + Line Feed). Default is 'LF'. |
| MultiPartRequest | Boolean | Set to 'true' when uploading CSV data in a multi-part request. This is only valid when the data is under 20,000 characters and a file path is provided. |
| CSVFilePath | String | Full file path to the CSV file containing job data. Required when using a multi-part request. |
| Name | Type | Description |
| ID | String | Unique identifier for the job created in Salesforce. |
| State | String | Current state of the job. Possible values include 'Open', 'Closed', 'Aborted', or 'Failed'. |
| JobType | String | Indicates the job type. Options include 'BigObjectIngest', 'Classic', or 'V2Ingest'. |
| ContentUrl | String | URL to use for uploading job data. Only available while the job is in 'Open' state. |
| ContentType | String | Format of the job data. Only 'CSV' is supported for V2 jobs. |
| CreatedDate | String | Timestamp in UTC when the job was created. |
| CreatedById | String | Salesforce user ID of the person who created the job. |
| ConcurrencyMode | String | Specifies whether the job uses 'parallel' or 'serial' processing for data batches. |
| SystemModStamp | String | UTC timestamp of the last system update to the job, typically when it finished processing. |
Deletes a job in Salesforce, provided it has a status of UploadComplete, JobComplete, Aborted, or Failed.
| Name | Type | Description |
| JobId | String | Unique identifier of the Salesforce Bulk API v2.0 job to be deleted. The job must be in a valid state for deletion. |
| Name | Type | Description |
| Deleted | String | Indicates whether the job was successfully deleted (true) or not (false). |
Retrieves details about a specific Salesforce batch job.
| Name | Type | Description |
| JobId | String | The Salesforce Job ID that the batch belongs to. Required to identify the job context for the batch. |
| BatchId | String | The unique identifier of the specific batch being retrieved within the specified job. |
| Name | Type | Description |
| ID | String | The unique ID of the batch returned from Salesforce. |
| JobID | String | The ID of the job that this batch is associated with, confirming the parent job. |
| ApexProcessingTime | String | Time in milliseconds spent executing Apex triggers and workflow rules during batch processing. Excludes asynchronous or batch Apex execution. Available in API version 19.0 and above. |
| ApiActiveProcessingTime | String | Active processing time in milliseconds, including Apex processing but excluding queue time and serialization overhead. Available in API version 19.0 and above. |
| CreatedDate | String | Timestamp in UTC when the batch was created and added to the job. This does not indicate when processing began. |
| NumberRecordsFailed | String | Total number of records in the batch that failed to process. This helps identify partial success or issues during execution. |
| NumberRecordsProcessed | String | Number of records that have been successfully processed in this batch so far. Increases as processing progresses. |
| State | String | Current processing status of the batch. Possible values include 'Queued', 'InProgress', 'Completed', 'Failed', or 'Not Processed'. |
| StateMessage | String | Detailed explanation of the current batch state. Provides failure reasons if the state is Failed. May be truncated if there are many errors. |
| SystemModstamp | String | UTC timestamp of the last update to the batch, usually indicating when processing completed. Valid only when State is Completed. |
| TotalProcessingTime | String | Total time in milliseconds spent processing the batch, excluding queue wait time. Available in API version 19.0 and above. |
Fetches the original submitted records of a completed Salesforce batch job.
| Name | Type | Description |
| JobId | String | The Salesforce Job ID that the batch belongs to. Required to identify the batch context for retrieving records. |
| BatchId | String | The ID of the specific batch for which the original records are being retrieved. |
| Name | Type | Description |
| * | String | Original submitted records for this batch. |
Fetches the results of a completed Salesforce batch job.
| Name | Type | Description |
| JobId | String | The Salesforce Job ID that the batch belongs to. Required to identify the batch context for retrieving results. |
| BatchId | String | The ID of the specific batch for which the processing results are being retrieved. |
| Name | Type | Description |
| ID | String | Unique identifier of the individual result record within the batch. |
| Created | String | Indicates whether the record was newly created as part of the batch operation (true or false). |
| Success | String | Indicates whether the record was processed successfully (true) or encountered an error (false). |
| Errors_Fields | String | List of field names that caused the record to fail, if applicable. |
| Errors_Message | String | Descriptive error message explaining why the record failed to process. |
| Errors_StatusCode | String | Salesforce error code associated with the failure. Useful for programmatic error handling and debugging. |
Returns a list of records deleted within a specified timeframe for a given object.
| Name | Type | Description |
| ObjectType | String | API name of the Salesforce object to query for deleted records, such as Account, Contact, or Opportunity. Must be a valid object in your organization. |
| StartDate | String | Start of the time window (in UTC) for retrieving deleted records. The seconds portion is ignored by the API. |
| EndDate | String | End of the time window (in UTC) for retrieving deleted records. The seconds portion is ignored by the API. |
| Name | Type | Description |
| Id | String | ID of each record that was deleted within the specified time range. |
| DeletedDate | String | Timestamp (in UTC) of when each corresponding record was deleted. |
Retrieves details about a specific Salesforce job, including its status and associated records.
| Name | Type | Description |
| JobId | String | The Salesforce Job ID to retrieve. This identifies the bulk operation whose metadata and status will be returned. |
| Name | Type | Description |
| ID | String | Unique identifier of the job. Same as the input JobId. |
| JobID | String | Alias for the job's unique ID. Same value as ID. |
| ObjectName | String | Name of the Salesforce object involved in the job, such as Account, Contact, or Opportunity. |
| Operation | String | Bulk operation being performed in the job. Possible values include insert, update, upsert, delete, query, and hardDelete. |
| ApiVersion | String | The Salesforce API version used when the job was created. Minimum supported version is 17.0. |
| ApexProcessingTime | String | Time in milliseconds spent processing Apex triggers and flows during the job. Does not include asynchronous Apex or batch jobs. Available from API version 19.0. |
| ApiActiveProcessingTime | String | Time in milliseconds of active processing (including ApexProcessingTime), excluding time spent waiting in queues or on serialization. Available from API version 19.0. |
| AssignmentRuleId | String | ID of the assignment rule applied to this job, used for assigning records such as leads or cases. May reference an active or inactive rule. |
| ConcurrencyMode | String | Mode of execution for batches in the job. 'Parallel' allows concurrent processing. 'Serial' processes batches one at a time to reduce contention. |
| ContentType | String | Data format used for the job, such as CSV, XML, ZIP_CSV, or ZIP_XML. |
| CreatedById | String | Salesforce user ID of the individual who created the job. |
| CreatedDate | String | Date and time (UTC) when the job was initially created. |
| ExternalIdFieldName | String | Field used for upsert operations to identify records by an external ID instead of Salesforce ID. |
| NumberBatchesCompleted | String | Number of batches within the job that completed successfully. |
| NumberBatchesQueued | String | Number of batches currently waiting to be processed. |
| NumberBatchesFailed | String | Number of batches that encountered errors and failed to complete. |
| NumberBatchesInProgress | String | Number of batches that are actively being processed. |
| NumberBatchesTotal | String | Total number of batches created for the job. Equals the sum of completed, failed, and in-progress batches once the job is closed or failed. |
| NumberRecordsFailed | String | Total number of records that failed to process across all batches in the job. Available from API version 19.0. |
| NumberRecordsProcessed | String | Total number of records that have been successfully processed across all batches. |
| NumberRetries | String | Number of internal retry attempts made by Salesforce to save results due to issues like lock contention. |
| State | String | Current lifecycle state of the job. Possible values include 'Open', 'Closed', 'Aborted', or 'Failed'. |
| SystemModStamp | String | Timestamp (UTC) of the most recent modification to the job. Indicates when the job last changed status or data. |
| TotalProcessingTime | String | Aggregate time in milliseconds spent processing all batches in the job. Does not include wait time. Available from API version 19.0. |
Fetches batch IDs for all batches associated with a specific Salesforce job.
| Name | Type | Description |
| JobId | String | The Salesforce Job ID for which to retrieve all associated batch IDs. |
| Name | Type | Description |
| ID | String | Unique identifier for each batch associated with the specified job. |
| State | String | Current status of the batch. Possible values include 'Queued', 'InProgress', 'Completed', 'Failed', or 'Not Processed'. |
Retrieves details of a Salesforce job, including its processing status and metadata.
| Name | Type | Description |
| JobId | String | The unique Salesforce Job ID to retrieve detailed metadata and processing status for a bulk job. |
| JobType | String | Specifies the type of job to retrieve. Valid values include 'INGEST' (data load), 'QUERY' (data extraction), or 'UNKNOWN' (unspecified).
The allowed values are UNKNOWN, INGEST, QUERY. The default value is UNKNOWN. |
| Name | Type | Description |
| ObjectName | String | Name of the Salesforce object the job operates on, such as Contact, Lead, or Opportunity. |
| Operation | String | Bulk operation being performed in the job. Common values include insert, update, upsert, delete, query, and hardDelete. |
| ApiVersion | String | API version used to create the job. Determines available features and fields. Minimum supported version is 17.0. |
| ConcurrencyMode | String | Execution mode for the job. 'Parallel' processes batches simultaneously, while 'Serial' processes them one at a time to avoid conflicts. |
| ContentType | String | The format of the data submitted or retrieved by the job. Valid formats include CSV, XML, ZIP_CSV, and ZIP_XML. |
| CreatedById | String | Salesforce user ID of the individual who created the job. |
| CreatedDate | String | UTC timestamp indicating when the job was initially created. |
| NumberRecordsProcessed | String | The total number of records that have been successfully processed by this job so far. |
| NumberRetries | String | Number of internal retry attempts made by Salesforce to save job results due to issues such as lock contention or system conflicts. |
| State | String | Current lifecycle state of the job. Possible values include 'Open', 'Closed', 'Aborted', or 'Failed'. |
| SystemModStamp | String | UTC timestamp of the most recent update to the job, such as completion or failure. |
| TotalProcessingTime | String | Total time in milliseconds spent processing all records in the job, excluding time spent waiting in the queue. Available from API version 19.0. |
| IsPkChunkingSupported | String | Indicates whether Primary Key (PK) chunking is supported for the object in query jobs, useful for large data volumes. |
| ErrorMessage | String | Error details returned if the job has failed. Helps in diagnosing processing or system issues. |
Fetches API usage and limit details for the Salesforce organization.
| Name | Type | Description |
| Current | Integer | The number of API requests or operations that have already been consumed for the specified limit type in the current 24-hour period. |
| Limit | Integer | The maximum number of allowed API requests or operations for the organization within a 24-hour period, based on your Salesforce edition and license. |
| Type | String | The category of limit being reported. For example, 'API REQUESTS' refers to the total API calls allowed per day for the organization. |
Returns a list of records updated within a specified timeframe for a given object.
| Name | Type | Description |
| ObjectType | String | API name of the Salesforce object to retrieve updated records for, such as Account, Contact, or Opportunity. Must be valid in your Salesforce org. |
| StartDate | String | Start of the time window (in UTC) for retrieving updated records. The API ignores seconds in the timestamp. |
| EndDate | String | End of the time window (in UTC) for retrieving updated records. The API ignores seconds in the timestamp. |
| Name | Type | Description |
| Id | String | ID of each record that was updated within the specified time range. |
Fetches personal details of the authenticated Salesforce user.
| Name | Type | Description |
| BasicInfoOnly | String | If set to 'true', only basic connection-related information is returned, such as ServerURL, SessionID, Sandbox, OrganizationId, and OrganizationName. Defaults to 'false' to return the full user profile. |
| Name | Type | Description |
| AccessibilityMode | String | Indicates whether accessibility features for screen reader support are enabled for the user interface. Returns 'true' if enabled. Available in API version 7.0 and later. |
| CurrencySymbol | String | The currency symbol used to display monetary values, applicable when the organization does not support multiple currencies. |
| OrganizationId | String | The unique Salesforce ID of the user's organization, useful for identifying the org across integrations or billing systems. |
| OrganizationMultiCurrency | String | Indicates whether the organization has multi-currency support enabled (true) or not (false). |
| OrganizationName | String | The name of the user's Salesforce organization or company. |
| OrgDefaultCurrencyIsoCode | String | Default ISO currency code for the organization. Used when multi-currency is disabled and no currency is explicitly set in a create request. |
| ProfileID | String | The unique ID of the user's profile, which determines access rights and permissions. |
| RoleID | String | The unique ID of the user's role in the organization's role hierarchy. |
| Sandbox | String | Indicates whether the organization is a sandbox (true) or production environment (false). May return NULL in non-Basic authentication scenarios. |
| ServerURL | String | The base URL of the Salesforce instance used for API requests. |
| SessionID | String | The current active session token used for authentication in API calls. |
| SessionSecondsValid | String | The number of seconds remaining before the current session expires. |
| UserDefaultCurrencyIsoCode | String | Default ISO currency code for the user, used when multi-currency is enabled and no specific currency is specified during object creation. |
| UserEmail | String | The email address associated with the user's Salesforce account. |
| UserFullName | String | The user's full name as defined in their profile. |
| UserID | String | The unique Salesforce ID of the user. |
| UserLanguage | String | The user's language preference, represented as an ISO code such as 'en_US' for American English or 'fr_CA' for Canadian French. |
| UserLocale | String | The user's locale settings, which affect formatting of dates, times, and currency symbols. Uses ISO format such as 'en_US'. |
| UserName | String | The login name used by the user to access Salesforce. |
| UserTimeZone | String | The user's time zone setting, which affects how date and time values are displayed. |
| UserType | String | The type of user license assigned to the user's profile, such as 'Standard', 'Chatter', or 'System Administrator'. |
| UserUISkin | String | Returns 'Theme2' if the user is using the Lightning Experience interface, or 'Theme1' if using Salesforce Classic. Available in API version 7.0 and later. |
Combines up to three records of the same type into a single record while preserving relevant data.
| Name | Type | Description |
| ObjectType | String | The Salesforce object type for the merge operation, such as Account, Contact, or Lead. Must be valid within your organization. |
| MasterRecordId | String | The ID of the primary record that will remain after the merge. Other specified records will be merged into this record. |
| RecordToMergeIds | String | A comma-separated list of one or two record IDs that will be merged into the master record. These records will be deleted after the merge. |
| Name | Type | Description |
| Id | String | The ID of the resulting master record after the merge operation is completed. |
| Success | String | Indicates whether the merge operation was successful (true) or encountered errors (false). |
| Errors_statusCode | String | Error code(s) returned if the merge operation failed. Each code provides insight into the cause of the failure. |
| Errors_message | String | Detailed message(s) describing any errors encountered during the merge process. |
| MergedRecordIds | String | List of IDs for records that were successfully merged into the master record. |
| UpdatedRelatedIds | String | List of related record IDs that were reassigned to the master record as a result of the merge. Only includes records viewable by the user. |
Deploys metadata components to a Salesforce organization, enabling changes to object structures and configurations.
| Name | Type | Description |
| FullPath | String | The full file path to the ZIP archive containing the metadata components to be deployed. For example: C:/Users/admin/Documents/deployment.zip. |
| AllowMissingFiles | String | If set to 'true', allows deployment to proceed even if some files listed in package.xml are not present in the ZIP archive. Defaults to 'false'. |
| AutoUpdatePackage | String | If the value is 'true', automatically includes files found in the ZIP archive but not specified in package.xml by issuing a MetadataRetrieve call to generate an updated package.xml. Defaults to 'false'. |
| IgnoreWarnings | String | If the value is 'true', allows the deployment to complete even if warnings are returned. Not recommended for production deployments. Defaults to 'false'. |
| RollbackOnError | String | If the value is 'true', rolls back the entire deployment if any error occurs. Defaults to 'false'. |
| RunAllTests | String | If the value is 'true', all Apex tests in the org are executed after deployment, including tests from managed packages. Defaults to 'false'. |
| RunTests | String | A list of specific Apex test classes to run during deployment. Use fully qualified class names with namespace prefix if applicable. Requires testLevel to be set to RunSpecifiedTests. |
| SinglePackage | String | If the value is 'true', indicates the ZIP archive contains a single package structure rather than multiple packages. Defaults to 'false'. |
| TestLevel | String | Defines which Apex tests are executed during deployment. Options: 'NoTestRun', 'RunSpecifiedTests', 'RunLocalTests', or 'RunAllTestsInOrg'. |
| Name | Type | Description |
| JobId | String | The unique job ID assigned to the deployment operation. |
| Success | String | Indicates whether the deployment completed successfully (true) or failed (false). |
| Status | String | The current status of the deployment job, such as InProgress, Succeeded, or Failed. |
| IgnoreWarnings | String | Echoes whether the deployment proceeded despite warnings. |
| NumberComponentErrors | String | The total number of metadata components that failed to deploy due to errors. |
| NumberComponentsDeployed | String | The number of metadata components that were successfully deployed. |
| NumberComponentsTotal | String | The total number of metadata components included in the deployment request. |
| NumberTestErrors | String | The number of Apex tests that failed during deployment. |
| NumberTestsCompleted | String | The number of Apex tests that completed execution during deployment. |
| NumberTestsTotal | String | The total number of Apex tests run during deployment. |
Retrieves additional details about a metadata deployment job in Salesforce.
| Name | Type | Description |
| JobId | String | The unique job ID associated with the metadata deployment operation. |
| Name | Type | Description |
| ComponentFailures_changed | String | Indicates whether the component was modified as a result of the deployment. A value of 'true' means the deployed component was different from the existing one. |
| ComponentFailures_componentType | String | The type of metadata component that failed during deployment, such as ApexClass, CustomObject, or Workflow. |
| ComponentFailures_created | String | Indicates whether the component was newly created during the deployment process. A value of 'true' means it did not exist prior to deployment. |
| ComponentFailures_createdDate | String | The date and time when the component was created, applicable if the deployment created it. |
| ComponentFailures_deleted | String | Indicates whether the component was deleted as part of this deployment. The value is 'true' if it was removed. |
| ComponentFailures_fileName | String | The file path and name within the ZIP archive that corresponds to the failed component. |
| ComponentFailures_fullName | String | The full unique name of the failed metadata component, typically combining object and API name. |
| ComponentFailures_problem | String | Details about the issue that caused the component to fail during deployment. |
| ComponentFailures_problemType | String | The type of problem encountered during deployment. Valid values are 'Warning' or 'Error'. |
| ComponentFailures_success | String | Indicates whether the component deployment was successful. The value is 'false' if there was a failure or warning. |
| ComponentSuccesses_changed | String | Indicates whether the deployed component was changed. A value of 'false' means it matched what was already in the organization. |
| ComponentSuccesses_componentType | String | The type of metadata component successfully deployed. |
| ComponentSuccesses_created | String | Indicates whether the component was created during this deployment. The value is 'true' if it did not previously exist. |
| ComponentSuccesses_createdDate | String | The date and time when the component was successfully created. |
| ComponentSuccesses_deleted | String | Indicates whether the component was deleted as part of this deployment. The value is 'true' if it was removed. |
| ComponentSuccesses_fileName | String | The file name from the ZIP archive that corresponds to the successfully deployed component. |
| ComponentSuccesses_fullName | String | The full unique name of the successfully deployed metadata component. |
| ComponentSuccesses_id | String | The unique internal Salesforce ID assigned to the deployed component. |
| ComponentSuccesses_success | String | Indicates whether the component deployment was successful (true) or not (false). |
| NumTestsRun | String | The total number of Apex unit tests executed as part of the deployment process. |
| NumFailures | String | The number of Apex tests that failed during the deployment. |
| TotalTime | String | The total time taken to run all tests during deployment, measured in milliseconds. |
Retrieves metadata components from a Salesforce organization for backup or modification.
| Name | Type | Description |
| PackageNames | String | A list of metadata package names to retrieve from Salesforce. Leave this blank if you are only retrieving unpackaged components. |
| SinglePackage | String | Indicates whether the retrieve operation targets a single package. Set to 'true' if retrieving metadata from one package only; set to 'false' for multiple packages. |
| SpecificFiles | String | A list of specific file paths to retrieve. This must only be used when retrieving from a single package and when PackageNames is not specified. |
| ManifestLocation | String | Path to a local package.xml file that defines the metadata components to retrieve. If not set, the retrieve operation defaults to fetching all custom objects. You can find package.xml files here: https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/manifest_samples.htm. |
| DownloadLocation | String | The local file system path where the retrieved ZIP file will be saved. If not specified, the ZIP file is saved in the current directory. |
| Name | Type | Description |
| Success | String | Returns 'true' if the metadata retrieval operation completed successfully; otherwise, 'false'. |
| FullPath | String | The complete file path and name where the retrieved metadata ZIP file was saved. |
Executes a batch query in Salesforce, allowing large dataset retrieval in multiple chunks.
| Name | Type | Description |
| Query | String | The query to execute using the Bulk API. Can be a SQL-like or SOQL query, based on the QueryMode. This is required unless both JobId and BatchId are provided. |
| QueryMode | String | Specifies how the query will be processed: as a SQL-like client-side query (with fallback for unsupported syntax), or as a native Salesforce Object Query Language (SOQL) query sent directly to Salesforce. SOQL mode does not support features such as COUNT, GROUP BY, OFFSET, relationship fields, or wildcards (*).
The allowed values are SQL, SOQL. The default value is SOQL. |
| JobId | String | The ID of the Bulk API job. Required if BatchId is also specified. |
| BatchId | String | The ID of the batch to retrieve results from. Required if JobId is specified. |
| ChunkSize | String | Optional. Enables query result chunking to improve performance on large datasets. Recommended for datasets exceeding 10 million records. Set to 0 to disable chunking. Maximum chunk size is 250,000.
The default value is 30000. |
| ConcurrencyMode | String | Defines how batches are processed. 'Parallel' (default) processes batches concurrently for speed. 'Serial' processes one batch at a time to avoid locking and contention issues.
The allowed values are Parallel, Serial. The default value is Parallel. |
| SkipErrors | String | Indicates whether to skip failed batches and return results from completed ones. Useful for partial success scenarios.
The allowed values are true, false. The default value is false. |
| Rows@Next | String | Used internally for paginating through query results. Do not set manually. |
| Name | Type | Description |
| QueryJobId | String | The ID of the job created to run the query. |
| QueryBatchId | String | The ID of the batch created to process the query. |
Fetches the results locators in parallel for a query job once the job has completed processing.
| Name | Type | Description |
| JobId | String | The ID of the Bulk API V2 job whose results locators you want to retrieve. |
| Name | Type | Description |
| ResultLocator | String | The locator for the result set. Which can be used to retrieve the results with QueryResultsV2 stored procedure. |
Fetches results for a query job once the job has completed processing.
| Name | Type | Description |
| JobId | String | The ID of the Bulk API V2 job whose results you want to retrieve. |
| Locator | String | An optional string token used for paginating through large result sets. Use this to retrieve subsequent segments of the query results. |
| MaxRecords | String | Specifies the maximum number of records to include in each result set. Useful for controlling memory usage or managing pagination. |
| FileName | String | Optional file name to use when saving the downloaded results locally. Used in combination with LocalPath. |
| LocalPath | String | The directory where the query results should be saved as a file. If not provided, the results are returned as in-memory data in the FileData output. |
| Encoding | String | Character encoding to apply to the output data. Common values include UTF-8 or ISO-8859-1.
The allowed values are NONE, BASE64. The default value is BASE64. |
| Name | Type | Description |
| Success | String | Indicates whether the query result download completed successfully. |
| Locator | String | A token representing the current batch of query results. Use this to fetch additional results if more records remain. |
| FullPath | String | The full file path, including the name, where the query results were saved. |
| FileData | String | The raw content of the result file, returned as in-memory data if LocalPath is not specified. |
Executes a text search in your organization's data.
| Name | Type | Description |
| SearchTerm | String | The term for which we are globally searching. |
| SOSL | String | The Salesforce Object Search Language (SOSL) to construct text-based search queries. |
| Name | Type | Description |
| Results | String | The raw JSON response containing the globally search result |
Restores records previously deleted and stored in Salesforce's Recycle Bin.
To restore an object from Salesforce's recycle bin you need to use one of the following examples:
EXECUTE Undelete Id = '1'
INSERT INTO Account#TEMP (ID) VALUES (1) INSERT INTO Account#TEMP (ID) VALUES (2) INSERT INTO Account#TEMP (ID) VALUES (3) EXECUTE Undelete Id = 'Account#TEMP'
EXECUTE Undelete XML = '<undelete xmlns="urn:enterprise.soap.sforce.com"> <ids>1</ids> <ids>2</ids> <ids>3</ids> </undelete>'
| Name | Type | Description |
| ID | String | The unique identifier of the deleted object to restore. Required if XML is not provided. |
| XML | String | An XML-formatted list of object IDs to restore. Use this to undelete multiple records in a single request. Required if ID is not specified. |
| Name | Type | Description |
| Success | String | Indicates whether the undelete operation was successful (true) or not (false). |
| ID | String | The ID or IDs of the objects that were successfully restored. |
You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.
The following tables return database metadata for Salesforce:
The following tables return information about how to connect to and query the data source:
The following table returns query statistics for data modification queries, including batch operations::
Lists the available databases.
The following query retrieves all databases determined by the connection string:
SELECT * FROM sys_catalogs
| Name | Type | Description |
| CatalogName | String | The database name. |
Lists the available schemas.
The following query retrieves all available schemas:
SELECT * FROM sys_schemas
| Name | Type | Description |
| CatalogName | String | The database name. |
| SchemaName | String | The schema name. |
Lists the available tables.
The following query retrieves the available tables and views:
SELECT * FROM sys_tables
| Name | Type | Description |
| CatalogName | String | The database containing the table or view. |
| SchemaName | String | The schema containing the table or view. |
| TableName | String | The name of the table or view. |
| TableType | String | The table type (table or view). |
| Description | String | A description of the table or view. |
| IsUpdateable | Boolean | Whether the table can be updated. |
Describes the columns of the available tables and views.
The following query returns the columns and data types for the Account table:
SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Account'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the table or view. |
| SchemaName | String | The schema containing the table or view. |
| TableName | String | The name of the table or view containing the column. |
| ColumnName | String | The column name. |
| DataTypeName | String | The data type name. |
| DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
| Length | Int32 | The storage size of the column. |
| DisplaySize | Int32 | The designated column's normal maximum width in characters. |
| NumericPrecision | Int32 | The maximum number of digits in numeric data. The column length in characters for character and date-time data. |
| NumericScale | Int32 | The column scale or number of digits to the right of the decimal point. |
| IsNullable | Boolean | Whether the column can contain null. |
| Description | String | A brief description of the column. |
| Ordinal | Int32 | The sequence number of the column. |
| IsAutoIncrement | String | Whether the column value is assigned in fixed increments. |
| IsGeneratedColumn | String | Whether the column is generated. |
| IsHidden | Boolean | Whether the column is hidden. |
| IsArray | Boolean | Whether the column is an array. |
| IsReadOnly | Boolean | Whether the column is read-only. |
| IsKey | Boolean | Indicates whether a field returned from sys_tablecolumns is the primary key of the table. |
| ColumnType | String | The role or classification of the column in the schema. Possible values include SYSTEM, LINKEDCOLUMN, NAVIGATIONKEY, REFERENCECOLUMN, and NAVIGATIONPARENTCOLUMN. |
Lists the available stored procedures.
The following query retrieves the available stored procedures:
SELECT * FROM sys_procedures
| Name | Type | Description |
| CatalogName | String | The database containing the stored procedure. |
| SchemaName | String | The schema containing the stored procedure. |
| ProcedureName | String | The name of the stored procedure. |
| Description | String | A description of the stored procedure. |
| ProcedureType | String | The type of the procedure, such as PROCEDURE or FUNCTION. |
Describes stored procedure parameters.
The following query returns information about all of the input parameters for the CreateJob stored procedure:
SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'CreateJob' AND Direction = 1 OR Direction = 2
To include result set columns in addition to the parameters, set the IncludeResultColumns pseudo column to True:
SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'CreateJob' AND IncludeResultColumns='True'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the stored procedure. |
| SchemaName | String | The name of the schema containing the stored procedure. |
| ProcedureName | String | The name of the stored procedure containing the parameter. |
| ColumnName | String | The name of the stored procedure parameter. |
| Direction | Int32 | An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters. |
| DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
| DataTypeName | String | The name of the data type. |
| NumericPrecision | Int32 | The maximum precision for numeric data. The column length in characters for character and date-time data. |
| Length | Int32 | The number of characters allowed for character data. The number of digits allowed for numeric data. |
| NumericScale | Int32 | The number of digits to the right of the decimal point in numeric data. |
| IsNullable | Boolean | Whether the parameter can contain null. |
| IsRequired | Boolean | Whether the parameter is required for execution of the procedure. |
| IsArray | Boolean | Whether the parameter is an array. |
| Description | String | The description of the parameter. |
| Ordinal | Int32 | The index of the parameter. |
| Values | String | The values you can set in this parameter are limited to those shown in this column. Possible values are comma-separated. |
| SupportsStreams | Boolean | Whether the parameter represents a file that you can pass as either a file path or a stream. |
| IsPath | Boolean | Whether the parameter is a target path for a schema creation operation. |
| Default | String | The value used for this parameter when no value is specified. |
| SpecificName | String | A label that, when multiple stored procedures have the same name, uniquely identifies each identically-named stored procedure. If there's only one procedure with a given name, its name is simply reflected here. |
| IsCDataProvided | Boolean | Whether the procedure is added/implemented by CData, as opposed to being a native Salesforce procedure. |
| Name | Type | Description |
| IncludeResultColumns | Boolean | Whether the output should include columns from the result set in addition to parameters. Defaults to False. |
Describes the primary and foreign keys.
The following query retrieves the primary key for the Account table:
SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Account'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the key. |
| SchemaName | String | The name of the schema containing the key. |
| TableName | String | The name of the table containing the key. |
| ColumnName | String | The name of the key column. |
| IsKey | Boolean | Whether the column is a primary key in the table referenced in the TableName field. |
| IsForeignKey | Boolean | Whether the column is a foreign key referenced in the TableName field. |
| PrimaryKeyName | String | The name of the primary key. |
| ForeignKeyName | String | The name of the foreign key. |
| ReferencedCatalogName | String | The database containing the primary key. |
| ReferencedSchemaName | String | The schema containing the primary key. |
| ReferencedTableName | String | The table containing the primary key. |
| ReferencedColumnName | String | The column name of the primary key. |
Describes the foreign keys.
The following query retrieves all foreign keys which refer to other tables:
SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the key. |
| SchemaName | String | The name of the schema containing the key. |
| TableName | String | The name of the table containing the key. |
| ColumnName | String | The name of the key column. |
| PrimaryKeyName | String | The name of the primary key. |
| ForeignKeyName | String | The name of the foreign key. |
| ReferencedCatalogName | String | The database containing the primary key. |
| ReferencedSchemaName | String | The schema containing the primary key. |
| ReferencedTableName | String | The table containing the primary key. |
| ReferencedColumnName | String | The column name of the primary key. |
| ForeignKeyType | String | Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key. |
Describes the primary keys.
The following query retrieves the primary keys from all tables and views:
SELECT * FROM sys_primarykeys
| Name | Type | Description |
| CatalogName | String | The name of the database containing the key. |
| SchemaName | String | The name of the schema containing the key. |
| TableName | String | The name of the table containing the key. |
| ColumnName | String | The name of the key column. |
| KeySeq | String | The sequence number of the primary key. |
| KeyName | String | The name of the primary key. |
Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.
The following query retrieves all indexes that are not primary keys:
SELECT * FROM sys_indexes WHERE IsPrimary='false'
| Name | Type | Description |
| CatalogName | String | The name of the database containing the index. |
| SchemaName | String | The name of the schema containing the index. |
| TableName | String | The name of the table containing the index. |
| IndexName | String | The index name. |
| ColumnName | String | The name of the column associated with the index. |
| IsUnique | Boolean | True if the index is unique. False otherwise. |
| IsPrimary | Boolean | True if the index is a primary key. False otherwise. |
| Type | Int16 | An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3). |
| SortOrder | String | The sort order: A for ascending or D for descending. |
| OrdinalPosition | Int16 | The sequence number of the column in the index. |
Returns information on the available connection properties and those set in the connection string.
The following query retrieves all connection properties that have been set in the connection string or set through a default value:
SELECT * FROM sys_connection_props WHERE Value <> ''
| Name | Type | Description |
| Name | String | The name of the connection property. |
| ShortDescription | String | A brief description. |
| Type | String | The data type of the connection property. |
| Default | String | The default value if one is not explicitly set. |
| Values | String | A comma-separated list of possible values. A validation error is thrown if another value is specified. |
| Value | String | The value you set or a preconfigured default. |
| Required | Boolean | Whether the property is required to connect. |
| Category | String | The category of the connection property. |
| IsSessionProperty | String | Whether the property is a session property, used to save information about the current connection. |
| Sensitivity | String | The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms. |
| PropertyName | String | A camel-cased truncated form of the connection property name. |
| Ordinal | Int32 | The index of the parameter. |
| CatOrdinal | Int32 | The index of the parameter category. |
| Hierarchy | String | Shows dependent properties associated that need to be set alongside this one. |
| Visible | Boolean | Informs whether the property is visible in the connection UI. |
| ETC | String | Various miscellaneous information about the property. |
Describes the SELECT query processing that the Cloud can offload to the data source.
See SQL Compliance for SQL syntax details.
Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.
| Name | Description | Possible Values |
| AGGREGATE_FUNCTIONS | Supported aggregation functions. | AVG, COUNT, MAX, MIN, SUM, DISTINCT |
| COUNT | Whether COUNT function is supported. | YES, NO |
| IDENTIFIER_QUOTE_OPEN_CHAR | The opening character used to escape an identifier. | [ |
| IDENTIFIER_QUOTE_CLOSE_CHAR | The closing character used to escape an identifier. | ] |
| SUPPORTED_OPERATORS | A list of supported SQL operators. | =, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR |
| GROUP_BY | Whether GROUP BY is supported, and, if so, the degree of support. | NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE |
| OJ_CAPABILITIES | The supported varieties of outer joins supported. | NO, LEFT, RIGHT, FULL, INNER, NOT_ORDERED, ALL_COMPARISON_OPS |
| OUTER_JOINS | Whether outer joins are supported. | YES, NO |
| SUBQUERIES | Whether subqueries are supported, and, if so, the degree of support. | NO, COMPARISON, EXISTS, IN, CORRELATED_SUBQUERIES, QUANTIFIED |
| STRING_FUNCTIONS | Supported string functions. | LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE |
| NUMERIC_FUNCTIONS | Supported numeric functions. | ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE |
| TIMEDATE_FUNCTIONS | Supported date/time functions. | NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT |
| REPLICATION_SKIP_TABLES | Indicates tables skipped during replication. | |
| REPLICATION_TIMECHECK_COLUMNS | A string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication. | |
| IDENTIFIER_PATTERN | String value indicating what string is valid for an identifier. | |
| SUPPORT_TRANSACTION | Indicates if the provider supports transactions such as commit and rollback. | YES, NO |
| DIALECT | Indicates the SQL dialect to use. | |
| KEY_PROPERTIES | Indicates the properties which identify the uniform database. | |
| SUPPORTS_MULTIPLE_SCHEMAS | Indicates if multiple schemas may exist for the provider. | YES, NO |
| SUPPORTS_MULTIPLE_CATALOGS | Indicates if multiple catalogs may exist for the provider. | YES, NO |
| DATASYNCVERSION | The CData Data Sync version needed to access this driver. | Standard, Starter, Professional, Enterprise |
| DATASYNCCATEGORY | The CData Data Sync category of this driver. | Source, Destination, Cloud Destination |
| SUPPORTSENHANCEDSQL | Whether enhanced SQL functionality beyond what is offered by the API is supported. | TRUE, FALSE |
| SUPPORTS_BATCH_OPERATIONS | Whether batch operations are supported. | YES, NO |
| SQL_CAP | All supported SQL capabilities for this driver. | SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX |
| PREFERRED_CACHE_OPTIONS | A string value specifies the preferred cacheOptions. | |
| ENABLE_EF_ADVANCED_QUERY | Indicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side. | YES, NO |
| PSEUDO_COLUMNS | A string array indicating the available pseudo columns. | |
| MERGE_ALWAYS | If the value is true, The Merge Mode is forcibly executed in Data Sync. | TRUE, FALSE |
| REPLICATION_MIN_DATE_QUERY | A select query to return the replicate start datetime. | |
| REPLICATION_MIN_FUNCTION | Allows a provider to specify the formula name to use for executing a server side min. | |
| REPLICATION_START_DATE | Allows a provider to specify a replicate startdate. | |
| REPLICATION_MAX_DATE_QUERY | A select query to return the replicate end datetime. | |
| REPLICATION_MAX_FUNCTION | Allows a provider to specify the formula name to use for executing a server side max. | |
| IGNORE_INTERVALS_ON_INITIAL_REPLICATE | A list of tables which will skip dividing the replicate into chunks on the initial replicate. | |
| CHECKCACHE_USE_PARENTID | Indicates whether the CheckCache statement should be done against the parent key column. | TRUE, FALSE |
| CREATE_SCHEMA_PROCEDURES | Indicates stored procedures that can be used for generating schema files. |
The following query retrieves the operators that can be used in the WHERE clause:
SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.
| Name | Type | Description |
| NAME | String | A component of SQL syntax, or a capability that can be processed on the server. |
| VALUE | String | Detail on the supported SQL or SQL syntax. |
Returns information about attempted modifications.
The following query retrieves the Ids of the modified rows in a batch operation:
SELECT * FROM sys_identity
| Name | Type | Description |
| Id | String | The database-generated Id returned from a data modification operation. |
| Batch | String | An identifier for the batch. 1 for a single operation. |
| Operation | String | The result of the operation in the batch: INSERTED, UPDATED, or DELETED. |
| Message | String | SUCCESS or an error message if the update in the batch failed. |
Describes the available system information.
The following query retrieves all columns:
SELECT * FROM sys_information
| Name | Type | Description |
| Product | String | The name of the product. |
| Version | String | The version number of the product. |
| Datasource | String | The name of the datasource the product connects to. |
| NodeId | String | The unique identifier of the machine where the product is installed. |
| HelpURL | String | The URL to the product's help documentation. |
| License | String | The license information for the product. (If this information is not available, the field may be left blank or marked as 'N/A'.) |
| Location | String | The file path location where the product's library is stored. |
| Environment | String | The version of the environment or rumtine the product is currently running under. |
| DataSyncVersion | String | The tier of CData Sync required to use this connector. |
| DataSyncCategory | String | The category of CData Sync functionality (e.g., Source, Destination). |
The connection string properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure in the connection string for this provider. Click the links for further details.
For more information on establishing a connection, see Establishing a Connection.
| Property | Description |
| AuthScheme | Specifies the authentication method to use when connecting to Salesforce. |
| User | Specifies the authenticating user's user ID. |
| Password | Specifies the authenticating user's password. |
| SecurityToken | Specifies the security token used to authenticate access to the Salesforce account. |
| UseSandbox | Specifies whether the connection should be made to a Salesforce sandbox environment rather than a production instance. |
| Property | Description |
| APIVersion | Specifies the Salesforce API version to use for the connection. |
| LoginURL | Specifies the Salesforce server URL used for authentication and login. |
| Property | Description |
| SSOLoginURL | The identity provider's login URL. |
| SSOProperties | Additional properties required to connect to the identity provider, formatted as a semicolon-separated list. |
| SSOExchangeURL | The URL used for consuming the SAML response and exchanging it for service specific credentials. |
| Property | Description |
| UseBulkAPI | Specifies whether to use the asynchronous Bulk API or the synchronous SOAP API for reading and writing data in Salesforce. |
| BulkAPIConcurrencyMode | Specifies the concurrency mode used when processing bulk rows with Salesforce Bulk API v1. |
| BulkUploadLimit | Specifies the maximum file size (in MB) that can be uploaded using Salesforce Bulk API v2. |
| BulkPollingInterval | Specifies the time interval (in milliseconds) between requests that check the availability of a bulk process response. |
| BulkQueryTimeout | Specifies the maximum time (in minutes) the provider waits for a bulk query response before timing out. |
| WaitForBulkResults | Specifies whether the provider should wait for bulk operation results to complete when using the asynchronous Bulk API. Only applies when UseBulkAPI is set to true. |
| BulkAPIVersion | Specifies the Salesforce Bulk API version to use for processing bulk queries and data operations. |
| PushEmptyValuesAsNull | Indicates whether empty values should be interpreted as empty strings or as NULL. |
| Property | Description |
| OAuthClientId | Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication. |
| OAuthClientSecret | Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.). |
| Scope | Specifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created. |
| Property | Description |
| OAuthJWTCert | Supplies the name of the client certificate's JWT Certificate store. |
| OAuthJWTCertType | Identifies the type of key store containing the JWT Certificate. |
| OAuthJWTCertPassword | Provides the password for the OAuth JWT certificate used to access a password-protected certificate store. If the certificate store does not require a password, leave this property blank. |
| OAuthJWTCertSubject | Identifies the subject of the OAuth JWT certificate used to locate a matching certificate in the store. Supports partial matches and the wildcard '*' to select the first certificate. |
| OAuthJWTIssuer | The issuer of the Java Web Token. |
| OAuthJWTSubject | The user subject for which the application is requesting delegated access. |
| Property | Description |
| SSLServerCert | Specifies the certificate to be accepted from the server when connecting using TLS/SSL. |
| Property | Description |
| Verbosity | Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5. |
| Property | Description |
| BrowsableSchemas | Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC . |
| Property | Description |
| AllOrNone | Specifies whether all insert, update, or delete operations in a request should fail if any individual record fails. |
| ArchiveMode | Specifies whether to include deleted and archived records in standard SELECT queries. |
| ContinueOnAlterException | Specifies whether the provider should continue executing subsequent ALTER statements after one fails. |
| ExposeConceptualEntities | Specifies whether Salesforce Record Types should be exposed as separate tables. |
| FilterScope | Specifies an optional scope to limit the records returned in queries using Salesforce's USING SCOPE keyword. |
| IncludeMetadataDescription | Specifies whether to retrieve descriptions for columns, tables, or both from the Salesforce Metadata API. |
| IncludeReports | Specifies whether Salesforce Reports should be exposed as views in the schema. |
| MaxRows | Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY. |
| NullBooleanBehavior | This property determines how the NULL values should be treated for the Boolean columns. |
| PseudoColumns | Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'. |
| RemoveBOMCharacter | Specifies whether the provider should remove the Byte Order Mark (BOM) character (0xFEFF) from content. |
| RemovePrivateChar | Specifies whether to replace private use characters with a '?' character in the retrieved content. |
| ReplaceInvalidUTF8Chars | Specifies whether to replace invalid UTF-8 characters in the content with a '?' character. |
| ReportExactPicklistLength | Specifies whether to report the exact length of picklist fields as defined in Salesforce, or to report them with a default length of 255. |
| ServerSideAggregation | Specifies whether aggregation operations such as SUM, COUNT, and GROUP BY should be performed on the Salesforce server or handled by the client. |
| SessionTimeout | Specifies the duration, in minutes, for which a Salesforce login session is reused before expiring. |
| SkipFormulaFields | Specifies whether formula fields should be excluded when listing columns for Salesforce objects. |
| SkipPickListTranslation | Specifies a comma-separated list of columns for which picklist translation should be skipped when retrieving data. |
| SortColumns | Specifies whether table columns should be sorted alphabetically by name or reported in the order provided by Salesforce. |
| Timeout | Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. |
| TranslatePickListFields | Specifies whether picklist field values should be translated into the language of the currently authenticated Salesforce user. |
| UseDisplayNames | Specifies whether to use display names for columns instead of their API names when listing metadata and querying data. |
| UseToolingAPI | Specifies whether to use the Salesforce Tooling API for retrieving and modifying metadata and development-related objects. |
This section provides a complete list of the Authentication properties you can configure in the connection string for this provider.
| Property | Description |
| AuthScheme | Specifies the authentication method to use when connecting to Salesforce. |
| User | Specifies the authenticating user's user ID. |
| Password | Specifies the authenticating user's password. |
| SecurityToken | Specifies the security token used to authenticate access to the Salesforce account. |
| UseSandbox | Specifies whether the connection should be made to a Salesforce sandbox environment rather than a production instance. |
Specifies the authentication method to use when connecting to Salesforce.
string
"OAuth"
Salesforce supports multiple authentication methods. The correct value depends on the authentication flow your organization uses.
Specifies the authenticating user's user ID.
string
""
The authenticating server requires both User and Password to validate the user's identity.
Specifies the authenticating user's password.
string
""
The authenticating server requires both User and Password to validate the user's identity.
Specifies the security token used to authenticate access to the Salesforce account.
string
""
When using Basic or OAuthPassword authentication, Salesforce may require a security token in addition to the user’s password. This token is an additional security measure, typically used when logging in from untrusted IP addresses or outside of the trusted IP ranges configured in Salesforce.
To obtain a security token, log in to Salesforce, navigate to Settings > My Personal Information > Reset My Security Token, and request a new token. The token is sent to your registered email address. If your password is reset, you also need to reset and retrieve a new security token.
This property is only needed if your IP address is not within the Trusted IP range defined in Salesforce or if your organization enforces security token requirements.
This property is useful for securely connecting to Salesforce from untrusted networks or when using Basic authentication methods that require additional verification.
Specifies whether the connection should be made to a Salesforce sandbox environment rather than a production instance.
bool
false
When UseSandbox is set to true, the Cloud connects to a Salesforce sandbox account, which is a testing and development environment separate from your production data. To authenticate correctly, you must also append the sandbox name to your username. For example, if your username is user and the sandbox name is sandbox, you should specify the User property as user.sandbox.
Salesforce sandbox environments are commonly used for development, staging, or testing without impacting production data. This property ensures that the connection is directed to the correct environment and endpoint. There are no direct performance impacts from setting this property, but sandbox environments may have different API limits or resource availability compared to production. Also, sandbox metadata and data may not be fully up-to-date with production unless a recent refresh has occurred. This property is useful for developers, testers, and administrators who need to safely test queries, operations, and integrations without affecting live production data.
This section provides a complete list of the Connection properties you can configure in the connection string for this provider.
| Property | Description |
| APIVersion | Specifies the Salesforce API version to use for the connection. |
| LoginURL | Specifies the Salesforce server URL used for authentication and login. |
Specifies the Salesforce API version to use for the connection.
string
"64.0"
This property allows you to override the default version if needed.
Ensure that the specified API version is supported by Salesforce. Using an unsupported version may result in errors or unexpected behavior.
Specifies the Salesforce server URL used for authentication and login.
string
""
This property defines the authentication endpoint used when logging into Salesforce. By default, the Cloud connects to Salesforce's standard SOAP API login URL: https://login.salesforce.com/services/Soap/c/62.0
Modify this value if:
Note: To connect to a standard sandbox environment, use the UseSandbox property. This automatically routes login attempts to the sandbox login endpoint (https://test.salesforce.com), and LoginURL does not need to be set manually unless your organization enforces domain-specific login policies.
Incorrect URL settings may prevent authentication, so it is important to verify that the specified login endpoint is valid for your Salesforce instance. If using Single Sign-On (SSO), the login URL must match the configuration of the identity provider. Organizations that frequently switch between sandbox and production environments should update this property accordingly to avoid connection issues.
This property is useful for organizations that require custom authentication endpoints, such as those using Salesforce Sandboxes, Government Cloud, or regional data centers.
This section provides a complete list of the SSO properties you can configure in the connection string for this provider.
| Property | Description |
| SSOLoginURL | The identity provider's login URL. |
| SSOProperties | Additional properties required to connect to the identity provider, formatted as a semicolon-separated list. |
| SSOExchangeURL | The URL used for consuming the SAML response and exchanging it for service specific credentials. |
The identity provider's login URL.
string
""
The identity provider's login URL.
Additional properties required to connect to the identity provider, formatted as a semicolon-separated list.
string
""
Additional properties required to connect to the identity provider, formatted as a semicolon-separated list.
This is used with the SSOLoginURL.
SSO configuration is discussed further in .
The URL used for consuming the SAML response and exchanging it for service specific credentials.
string
""
The CData Cloud will use the URL specified here to consume a SAML response and exchange it for service specific credentials. The retrieved credentials are the final piece during the SSO connection that are used to communicate with Salesforce.
This section provides a complete list of the BulkAPI properties you can configure in the connection string for this provider.
| Property | Description |
| UseBulkAPI | Specifies whether to use the asynchronous Bulk API or the synchronous SOAP API for reading and writing data in Salesforce. |
| BulkAPIConcurrencyMode | Specifies the concurrency mode used when processing bulk rows with Salesforce Bulk API v1. |
| BulkUploadLimit | Specifies the maximum file size (in MB) that can be uploaded using Salesforce Bulk API v2. |
| BulkPollingInterval | Specifies the time interval (in milliseconds) between requests that check the availability of a bulk process response. |
| BulkQueryTimeout | Specifies the maximum time (in minutes) the provider waits for a bulk query response before timing out. |
| WaitForBulkResults | Specifies whether the provider should wait for bulk operation results to complete when using the asynchronous Bulk API. Only applies when UseBulkAPI is set to true. |
| BulkAPIVersion | Specifies the Salesforce Bulk API version to use for processing bulk queries and data operations. |
| PushEmptyValuesAsNull | Indicates whether empty values should be interpreted as empty strings or as NULL. |
Specifies whether to use the asynchronous Bulk API or the synchronous SOAP API for reading and writing data in Salesforce.
bool
false
When UseBulkAPI is set to true, the Cloud uses Salesforce’s Bulk API for both reads and writes. For reads, the Cloud creates bulk query jobs and begins returning results as they become available. Queries that contain JOINs or aggregations are not supported by the Bulk API, so the Cloud automatically falls back to the SOAP API.
For writes, up to 10,000 records per batch can be sent. These requests are asynchronous, meaning the Cloud does not wait for Salesforce to fully process the operation. You can monitor the status of these jobs using the temporary system table. For example: SELECT * FROM Info#TEMP
This query returns job and batch IDs. These IDs can be used with GetJob, GetBatch, and GetBatchResults to track the job’s progress.
When UseBulkAPI is set to false, the Cloud uses the SOAP API for reads and writes. In this mode, batch processing is still supported for writes, but the results are returned synchronously.
The Bulk API is optimized for processing large data sets asynchronously, making it well-suited for high-volume imports and exports. However, it does not support complex queries that involve joins or aggregations, requiring fallback to the SOAP API. For writes, the Bulk API allows efficient handling of large record volumes, but its asynchronous nature means job monitoring is required. The SOAP API provides immediate feedback on operations and is more suitable for smaller transactions.
This property is useful for large-scale data operations where asynchronous processing is acceptable or preferred.
Specifies the concurrency mode used when processing bulk rows with Salesforce Bulk API v1.
string
"Serial"
Salesforce Bulk API v1 supports two concurrency modes for handling bulk data operations. Setting BulkAPIConcurrencyMode to Serial ensures that batches are processed sequentially, which can prevent record-locking issues when working with related records. However, this can slow down performance, especially when processing large datasets.
Using Parallel allows multiple batches to be processed simultaneously, significantly improving throughput. However, Salesforce enforces record locking, meaning that parallel operations attempting to update related records may result in errors due to conflicts.
Processing bulk data efficiently is critical for high-throughput applications. If your workload involves independent records, enabling Parallel mode can significantly speed up processing. However, if your operations involve updates to related records, using Serial mode can help prevent locking issues.
This property is useful when optimizing bulk operations based on your data structure and processing needs. Choosing the right setting can reduce API request times and improve overall system performance.
This property applies only when Bulk API v1 is enabled. Bulk API v2 does not support this setting, as it handles concurrency automatically.
Specifies the maximum file size (in MB) that can be uploaded using Salesforce Bulk API v2.
int
100
When UseBulkAPI is set to true, this property defines the maximum file size allowed for ingestion via Salesforce Bulk API v2. Salesforce enforces a maximum upload size of 100 MB, which is the default value for this setting. Exceeding this limit may result in errors or failed operations. In most cases, this value does not need to be changed. However, it can be adjusted to a lower value if needed. For example, to reduce job size or manage network constraints.
This property ensures compliance with Salesforce’s bulk upload limits. Attempting to upload files larger than 100 MB will result in failures. If you encounter timeouts or errors with large uploads, consider reducing the file size or breaking the data into smaller chunks to improve reliability and avoid exceeding API rate or processing limits.
This property is useful when managing bulk data ingestion, helping ensure compatibility with Salesforce's file size constraints and maintaining efficient processing for large datasets.
This setting applies only when Salesforce Bulk API v2 is used.
Specifies the time interval (in milliseconds) between requests that check the availability of a bulk process response.
string
"500"
This property determines the polling frequency, controlling how often the Cloud sends a request to check the job status. Lower values increase polling frequency, while higher values reduce API calls but may introduce delays in retrieving query results. When UseBulkAPI is set to true, the Cloud submits asynchronous jobs to Salesforce for both bulk query operations (such as SELECT statements) and bulk ingest operations (such as INSERT, UPDATE, or DELETE). The Cloud then polls the Salesforce server at regular intervals to check if the results are ready. Polling is performed for query and ingest responses only when WaitForBulkResults is set to true.
Frequent polling (lower values) may result in faster query execution but can increase API usage. A higher polling interval reduces API requests but may lead to slower response times if the query completes and polling is delayed.
This property is useful when fine-tuning performance vs. API consumption when executing bulk queries in Salesforce. Adjusting this setting based on query size and API rate limits can help optimize performance.
This setting applies only when Salesforce Bulk API is used.
Specifies the maximum time (in minutes) the provider waits for a bulk query response before timing out.
string
"25"
When UseBulkAPI is set to true, the Cloud submits SELECT queries as asynchronous jobs in Salesforce. The Cloud then polls Salesforce at regular intervals to check if the results are ready.
This property controls the total amount of time the Cloud waits for the bulk query to complete before timing out. If the query takes longer than this duration, the connection fails with a timeout error. A longer BulkQueryTimeout allows Salesforce more time to process large or complex queries, reducing the chance of failure due to timeouts. However, setting this value too high may cause long waits for queries that are unlikely to complete successfully.
This property is different from Timeout, which applies to all connection requests and governs inactivity rather than the execution time of a bulk query.
This property is useful when dealing with large datasets or slow-running queries in Salesforce Bulk API. Adjusting this value can help balance query success rates and timeout handling based on expected execution time.
This setting applies only when Salesforce Bulk API is used.
Specifies whether the provider should wait for bulk operation results to complete when using the asynchronous Bulk API. Only applies when UseBulkAPI is set to true.
bool
false
When WaitForBulkResults is set to false, the Cloud submits bulk data modification operations to Salesforce and returns control immediately without waiting for the job to finish processing. This results in faster execution, but result details are not yet available. In this case, the Info#TEMP table contains information about the created batch or job which you can use with stored procedures to manually retrieve the final results.
When WaitForBulkResults is set to true, the Cloud waits for Salesforce to finish processing each bulk operation before returning. This enables the LastResultInfo#TEMP table to include detailed information about each affected row, such as IDs, status values, and any error messages, without requiring additional queries.
The job and batch IDs found in either Info#TEMP or LastResultInfo#TEMP can be used with stored procedures to retrieve detailed job and batch results:
Choosing not to wait for results reduces execution time and allows your application to continue sooner, but requires additional follow-up steps to track success or failure. Enabling this property introduces more processing time, but provides detailed results in a single operation.
This property is useful for balancing speed versus detailed operational insight in bulk data modification workflows.
Specifies the Salesforce Bulk API version to use for processing bulk queries and data operations.
string
"v2"
Salesforce offers two versions of the Bulk API, each optimized for different use cases.
For Salesforce API versions 62.0 and later, v2 is generally recommended due to its more consistent design, stronger integration with the broader Salesforce API ecosystem, and reduced API consumption. Using v2 may reduce the need for manual optimizations, making it a good choice for most standard bulk operations. However, for large-scale or performance-critical workflows, v1 offers greater flexibility in controlling batch processing and error handling.
Indicates whether empty values should be interpreted as empty strings or as NULL.
bool
true
Indicates whether empty values should be interpreted as empty strings or as NULL. This setting only affects SELECT statements when UseBulkAPI = true and BulkAPIVersion = v2.
By default, the driver pushes empty values returned from the BULK V2 API query operation as NULL. When PushEmptyValuesAsNull is set to false, empty values are instead pushed as an empty string for VARCHAR columns and as 0 for numeric fields.
This section provides a complete list of the OAuth properties you can configure in the connection string for this provider.
| Property | Description |
| OAuthClientId | Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication. |
| OAuthClientSecret | Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.). |
| Scope | Specifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created. |
Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
string
""
This property is required in two cases:
(When the driver provides embedded OAuth credentials, this value may already be provided by the Cloud and thus not require manual entry.)
OAuthClientId is generally used alongside other OAuth-related properties such as OAuthClientSecret and OAuthSettingsLocation when configuring an authenticated connection.
OAuthClientId is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can usually find this value in your identity provider’s application registration settings. Look for a field labeled Client ID, Application ID, or Consumer Key.
While the client ID is not considered a confidential value like a client secret, it is still part of your application's identity and should be handled carefully. Avoid exposing it in public repositories or shared configuration files.
For more information on how this property is used when configuring a connection, see Establishing a Connection.
Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).
string
""
This property (sometimes called the application secret or consumer secret) is required when using a custom OAuth application in any flow that requires secure client authentication, such as web-based OAuth, service-based connections, or certificate-based authorization flows. It is not required when using an embedded OAuth application.
The client secret is used during the token exchange step of the OAuth flow, when the driver requests an access token from the authorization server. If this value is missing or incorrect, authentication fails with either an invalid_client or an unauthorized_client error.
OAuthClientSecret is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can obtain this value from your identity provider when registering the OAuth application.
Notes:
For more information on how this property is used when configuring a connection, see Establishing a Connection
Specifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created.
string
""
Scopes are set to define what kind of access the authenticating user will have; for example, read, read and write, restricted access to sensitive information. System administrators can use scopes to selectively enable access by functionality or security clearance.
When InitiateOAuth is set to GETANDREFRESH, you must use this property if you want to change which scopes are requested.
When InitiateOAuth is set to either REFRESH or OFF, you can change which scopes are requested using either this property or the Scope input.
This section provides a complete list of the JWT OAuth properties you can configure in the connection string for this provider.
| Property | Description |
| OAuthJWTCert | Supplies the name of the client certificate's JWT Certificate store. |
| OAuthJWTCertType | Identifies the type of key store containing the JWT Certificate. |
| OAuthJWTCertPassword | Provides the password for the OAuth JWT certificate used to access a password-protected certificate store. If the certificate store does not require a password, leave this property blank. |
| OAuthJWTCertSubject | Identifies the subject of the OAuth JWT certificate used to locate a matching certificate in the store. Supports partial matches and the wildcard '*' to select the first certificate. |
| OAuthJWTIssuer | The issuer of the Java Web Token. |
| OAuthJWTSubject | The user subject for which the application is requesting delegated access. |
Supplies the name of the client certificate's JWT Certificate store.
string
""
The OAuthJWTCertType field specifies the type of the certificate store specified in OAuthJWTCert. If the store is password-protected, use OAuthJWTCertPassword to supply the password..
OAuthJWTCert is used in conjunction with the OAuthJWTCertSubject field in order to specify client certificates. If OAuthJWTCert has a value, and OAuthJWTCertSubject is set, the CData Cloud initiates a search for a certificate. For further information, see OAuthJWTCertSubject.
Designations of certificate stores are platform-dependent.
Notes
Identifies the type of key store containing the JWT Certificate.
string
"PEMKEY_BLOB"
| Value | Description | Notes |
| USER | A certificate store owned by the current user. | Only available in Windows. |
| MACHINE | A machine store. | Not available in Java or other non-Windows environments. |
| PFXFILE | A PFX (PKCS12) file containing certificates. | |
| PFXBLOB | A string (base-64-encoded) representing a certificate store in PFX (PKCS12) format. | |
| JKSFILE | A Java key store (JKS) file containing certificates. | Only available in Java. |
| JKSBLOB | A string (base-64-encoded) representing a certificate store in Java key store (JKS) format. | Only available in Java. |
| PEMKEY_FILE | A PEM-encoded file that contains a private key and an optional certificate. | |
| PEMKEY_BLOB | A string (base64-encoded) that contains a private key and an optional certificate. | |
| PUBLIC_KEY_FILE | A file that contains a PEM- or DER-encoded public key certificate. | |
| PUBLIC_KEY_BLOB | A string (base-64-encoded) that contains a PEM- or DER-encoded public key certificate. | |
| SSHPUBLIC_KEY_FILE | A file that contains an SSH-style public key. | |
| SSHPUBLIC_KEY_BLOB | A string (base-64-encoded) that contains an SSH-style public key. | |
| P7BFILE | A PKCS7 file containing certificates. | |
| PPKFILE | A file that contains a PPK (PuTTY Private Key). | |
| XMLFILE | A file that contains a certificate in XML format. | |
| XMLBLOB | Astring that contains a certificate in XML format. | |
| BCFKSFILE | A file that contains an Bouncy Castle keystore. | |
| BCFKSBLOB | A string (base-64-encoded) that contains a Bouncy Castle keystore. |
Provides the password for the OAuth JWT certificate used to access a password-protected certificate store. If the certificate store does not require a password, leave this property blank.
string
""
This property specifies the password needed to open a password-protected certificate store. To determine if a password is necessary, refer to the documentation or configuration for your specific certificate store.
Identifies the subject of the OAuth JWT certificate used to locate a matching certificate in the store. Supports partial matches and the wildcard '*' to select the first certificate.
string
"*"
The value of this property is used to locate a matching certificate in the store. The search process works as follows:
You can set the value to '*' to automatically select the first certificate in the store. The certificate subject is a comma-separated list of distinguished name fields and values. For example: CN=www.server.com, OU=test, C=US, [email protected].
Common fields include:
| Field | Meaning |
| CN | Common Name. This is commonly a host name like www.server.com. |
| O | Organization |
| OU | Organizational Unit |
| L | Locality |
| S | State |
| C | Country |
| E | Email Address |
If a field value contains a comma, enclose it in quotes. For example: "O=ACME, Inc.".
The issuer of the Java Web Token.
string
""
The issuer of the Java Web Token. Set this to the OAuth Client ID.
The user subject for which the application is requesting delegated access.
string
""
The user subject for which the application is requesting delegated access. Set this to the username (email address) of the user who is permitted to use the OAuth App.
This section provides a complete list of the SSL properties you can configure in the connection string for this provider.
| Property | Description |
| SSLServerCert | Specifies the certificate to be accepted from the server when connecting using TLS/SSL. |
Specifies the certificate to be accepted from the server when connecting using TLS/SSL.
string
""
If you are using a TLS/SSL connection, use this property to specify the TLS/SSL certificate to be accepted from the server. If you specify a value for this property, all other certificates that are not trusted by the machine are rejected.
This property can take the following forms:
| Description | Example |
| A full PEM Certificate (example shortened for brevity) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
| A path to a local file containing the certificate | C:\cert.cer |
| The public key (example shortened for brevity) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
| The MD5 Thumbprint (hex values can also be either space- or colon-separated) | ecadbdda5a1529c58a1e9e09828d70e4 |
| The SHA1 Thumbprint (hex values can also be either space- or colon-separated) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
Note: It is possible to use '*' to signify that all certificates should be accepted, but due to security concerns this is not recommended.
This section provides a complete list of the Logging properties you can configure in the connection string for this provider.
| Property | Description |
| Verbosity | Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5. |
Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
string
"1"
This property defines the level of detail the Cloud includes in the log file. Higher verbosity levels increase the detail of the logged information, but may also result in larger log files and slower performance due to the additional data being captured.
The default verbosity level is 1, which is recommended for regular operation. Higher verbosity levels are primarily intended for debugging purposes. For more information on each level, refer to Logging.
When combined with the LogModules property, Verbosity can refine logging to specific categories of information.
This section provides a complete list of the Schema properties you can configure in the connection string for this provider.
| Property | Description |
| BrowsableSchemas | Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC . |
Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
string
""
Listing all available database schemas can take extra time, thus degrading performance. Providing a list of schemas in the connection string saves time and improves performance.
This section provides a complete list of the Miscellaneous properties you can configure in the connection string for this provider.
| Property | Description |
| AllOrNone | Specifies whether all insert, update, or delete operations in a request should fail if any individual record fails. |
| ArchiveMode | Specifies whether to include deleted and archived records in standard SELECT queries. |
| ContinueOnAlterException | Specifies whether the provider should continue executing subsequent ALTER statements after one fails. |
| ExposeConceptualEntities | Specifies whether Salesforce Record Types should be exposed as separate tables. |
| FilterScope | Specifies an optional scope to limit the records returned in queries using Salesforce's USING SCOPE keyword. |
| IncludeMetadataDescription | Specifies whether to retrieve descriptions for columns, tables, or both from the Salesforce Metadata API. |
| IncludeReports | Specifies whether Salesforce Reports should be exposed as views in the schema. |
| MaxRows | Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY. |
| NullBooleanBehavior | This property determines how the NULL values should be treated for the Boolean columns. |
| PseudoColumns | Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'. |
| RemoveBOMCharacter | Specifies whether the provider should remove the Byte Order Mark (BOM) character (0xFEFF) from content. |
| RemovePrivateChar | Specifies whether to replace private use characters with a '?' character in the retrieved content. |
| ReplaceInvalidUTF8Chars | Specifies whether to replace invalid UTF-8 characters in the content with a '?' character. |
| ReportExactPicklistLength | Specifies whether to report the exact length of picklist fields as defined in Salesforce, or to report them with a default length of 255. |
| ServerSideAggregation | Specifies whether aggregation operations such as SUM, COUNT, and GROUP BY should be performed on the Salesforce server or handled by the client. |
| SessionTimeout | Specifies the duration, in minutes, for which a Salesforce login session is reused before expiring. |
| SkipFormulaFields | Specifies whether formula fields should be excluded when listing columns for Salesforce objects. |
| SkipPickListTranslation | Specifies a comma-separated list of columns for which picklist translation should be skipped when retrieving data. |
| SortColumns | Specifies whether table columns should be sorted alphabetically by name or reported in the order provided by Salesforce. |
| Timeout | Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. |
| TranslatePickListFields | Specifies whether picklist field values should be translated into the language of the currently authenticated Salesforce user. |
| UseDisplayNames | Specifies whether to use display names for columns instead of their API names when listing metadata and querying data. |
| UseToolingAPI | Specifies whether to use the Salesforce Tooling API for retrieving and modifying metadata and development-related objects. |
Specifies whether all insert, update, or delete operations in a request should fail if any individual record fails.
bool
false
When AllOrNone is set to true, if a single record fails during an insert, update, or delete operation, the entire request is rolled back, and no records are committed.
When AllOrNone is set to false, successful records in the batch are committed, even if some records fail.
This property does not apply when using Bulk API requests.
Specifies whether to include deleted and archived records in standard SELECT queries.
bool
false
By default, Salesforce excludes deleted and archived records from query results. When ArchiveMode is set to true, the Cloud uses an alternative query behavior that includes these records. This corresponds to Salesforce’s queryAll operation, which retrieves both active and soft-deleted records that are not returned in standard queries.
This setting is useful for retrieving deleted records before they are permanently removed, accessing archived data for historical reporting, or performing audits that require a complete dataset.
Deleted records retrieved with queryAll behavior remain available only until they are permanently removed, typically 15 days after deletion. Including deleted and archived records may increase API usage and result in a significantly larger dataset, which can impact query performance. If only active records are needed, keeping ArchiveMode set to false helps improve efficiency by avoiding unnecessary data retrieval.
Specifies whether the provider should continue executing subsequent ALTER statements after one fails.
bool
false
When modifying table schemas, Salesforce imposes a limit on the number of columns that can be altered in a single ALTER statement. To comply with this, the Cloud automatically splits ALTER statements into multiple smaller statements, each modifying up to 10 columns.
If ContinueOnAlterException is set to true, the Cloud continues executing remaining ALTER statements even if one fails. If set to false, the process stops immediately when an error occurs.
Setting this property to true allows schema modifications to proceed partially even when some statements fail, which can be useful for batch updates or non-critical column modifications. However, enabling this may result in inconsistent table structures if some changes succeed while others fail.
This property is useful when performing schema updates on Salesforce objects while needing to balance error handling and execution continuity.
Specifies whether Salesforce Record Types should be exposed as separate tables.
bool
false
Each Salesforce object can have multiple record types, which categorize records within an object based on business processes. For example, the Account object may include record types such as Partner, Customer, and Supplier, each with distinct page layouts, business processes, and picklist values.
By default, record types are not exposed as separate tables, and all records appear within a single table. When ExposeConceptualEntities is set to true, the Cloud creates additional tables for each record type, allowing direct access to categorized data. This feature simplifies queries by allowing users to retrieve records of a specific type without filtering within a single table.
Metadata Complexity: Enabling this property may significantly increase the number of tables in the schema. Large Salesforce instances with many record types could experience longer metadata retrieval times.
Schema Changes: If Salesforce administrators add or remove record types, the available tables will change dynamically, which may require adjustments in queries and integrations.
Query Optimization: While this feature simplifies record retrieval, users can still achieve the same results using filters on the standard object table. For example, SELECT * FROM Account WHERE RecordType = 'Partner'
This property is useful when working with complex Salesforce implementations where record types are heavily used to segment business processes, and users need a more structured way to access specific record categories. Enabling this setting can provide clearer schema organization at the cost of increased metadata complexity.
Specifies an optional scope to limit the records returned in queries using Salesforce's USING SCOPE keyword.
string
"None"
When executing SOQL queries, this property appends the "USING SCOPE" keyword, restricting query results based on the selected filter scope. This helps refine queries by limiting records to those most relevant to the user's role and visibility settings in Salesforce.
For example, if FilterScope is set to Mine, the query retrieves only records owned by the currently authenticated user: SELECT Id, Name FROM Account USING SCOPE Mine
If FilterScope is set to MineAndMyGroups, the query expands the results to include records owned by both the user and any groups they belong to.
Using FilterScope can improve query performance by reducing the number of records returned, particularly in large datasets. However, you should ensure that you select an appropriate scope, as overly restrictive settings may omit necessary records from query results.
This property is useful when working in multi-user environments, helping users retrieve records relevant to their role, team, or assigned territories.
Specifies whether to retrieve descriptions for columns, tables, or both from the Salesforce Metadata API.
string
"NONE"
The Salesforce Metadata API provides descriptions for tables and columns, which can be useful for data discovery and schema documentation. By default, descriptions are not retrieved, but this property allows fetching additional metadata when needed. For example:
Enabling this property increases the number of API calls, which may impact performance, especially in environments with large schemas. Consider using it only when necessary to avoid excessive API requests.
This property is useful when additional metadata context is required for schema exploration, documentation, or reporting tools.
Specifies whether Salesforce Reports should be exposed as views in the schema.
bool
true
Salesforce Reports provide predefined, structured data views that users create within the Salesforce UI. When IncludeReports is set to true, the provider exposes reports as views, making them queryable like database tables.
Query Flexibility: Reports exposed as views can be queried directly, but they inherit Salesforce report restrictions, meaning they cannot be modified like standard tables.
API Usage: Enabling this property may result in additional API requests to fetch report data. Consider disabling it if reports are not needed for queries to reduce API consumption.
Access Control: Users querying reports must have the appropriate permissions in Salesforce to access the reports as views.
This property is useful when integrating Salesforce Reports into analytics workflows, enabling direct querying of pre-built reports without manually exporting data from the Salesforce UI.
Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.
int
-1
The default value for this property, -1, means that no row limit is enforced unless the query explicitly includes a LIMIT clause. (When a query includes a LIMIT clause, the value specified in the query takes precedence over the MaxRows setting.)
Setting MaxRows to a whole number greater than 0 ensures that queries do not return excessively large result sets by default.
This property is useful for optimizing performance and preventing excessive resource consumption when executing queries that could otherwise return very large datasets.
This property determines how the NULL values should be treated for the Boolean columns.
string
"IGNORE"
By default, if an NULL value is occurred in a Boolean column, the driver will ignore the NULL value. * NullBooleanBehavior='IGNORE' the NULL value will be ignored for CUD operation while for the SELECT operation the driver will comapre it with the NULL value. * NullBooleanBehavior='FALSE' the NULL value will be converted to 'False' for the CUD operation and the SELECT operation.
Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.
string
""
This property allows you to define which pseudocolumns the Cloud exposes as table columns.
To specify individual pseudocolumns, use the following format:
Table1=Column1;Table1=Column2;Table2=Column3
To include all pseudocolumns for all tables use:
*=*
Specifies whether the provider should remove the Byte Order Mark (BOM) character (0xFEFF) from content.
bool
false
The BOM character (0xFEFF) is sometimes present at the beginning of UTF-8 or UTF-16 encoded files or API responses to indicate byte order. However, this character can cause issues in parsing or processing content, especially in CSV imports, API responses, or when reading metadata.
When RemoveBOMCharacter is set to true, the Cloud strips the BOM character from incoming content to ensure clean parsing and avoid errors or unexpected characters in query results and metadata discovery.
Removing BOM characters may improve compatibility when working with external data sources or APIs that include this marker. However, if the source system relies on BOM for encoding interpretation, removing it could lead to misinterpretation of character encoding in certain edge cases. This property should generally be enabled when encountering unexpected characters or parsing errors at the start of content.
This property is useful for handling clean input when dealing with file imports, streamed data, or API responses where the BOM character is present and causes parsing issues.
Specifies whether to replace private use characters with a '?' character in the retrieved content.
bool
false
Private use characters are Unicode characters reserved for application-specific use and are not assigned standard meanings. Some Salesforce data or metadata responses may contain these characters, which can cause issues in downstream applications, exports, or parsing tools that do not recognize or support them.
When RemovePrivateChar is set to true, the Cloud replaces any encountered private use characters with a '?' to ensure compatibility and prevent parsing or display errors.
Enabling this property ensures cleaner and more standardized output when working with data exports, logs, or applications that do not handle private use characters gracefully. However, replacing characters may result in loss of non-standard information if those characters were used intentionally for custom encoding or annotations.
This property is useful when working with systems that require strict character handling or when encountering issues with invisible or unsupported characters in Salesforce data.
Specifies whether to replace invalid UTF-8 characters in the content with a '?' character.
bool
false
Sometimes, API responses or data from Salesforce may contain invalid or corrupted UTF-8 sequences. These can cause parsing errors, export issues, or problems in downstream applications that expect well-formed UTF-8 content.
When ReplaceInvalidUTF8Chars is set to true, the Cloud replaces any invalid UTF-8 characters with a '?' to ensure the data is safely consumable by systems that enforce strict encoding compliance. This prevents data retrieval errors and avoids failures in export or reporting workflows.
Enabling this property ensures data compatibility and stability in systems that require strict UTF-8 compliance. However, replacing characters could result in loss of original information in cases where the invalid characters were part of non-standard data. Use this property when encountering encoding errors or unreadable characters in your data results.
This property is useful when working with external applications or data pipelines that require clean, well-formed UTF-8 data and cannot tolerate encoding issues.
Specifies whether to report the exact length of picklist fields as defined in Salesforce, or to report them with a default length of 255.
bool
false
By default, the Cloud reports all picklist fields with a length of 255, regardless of their actual length in Salesforce. This simplifies schema definitions, but may not accurately reflect field constraints.
When this property is set to true, the Cloud reports each picklist field with its exact length as defined in the Salesforce metadata. This is helpful for applications or integrations that require strict adherence to field size constraints.
Reporting exact lengths may slightly increase the complexity of schema discovery but ensures accurate metadata for data validation and form generation. Using a fixed length of 255 simplifies schema management but may cause issues if values exceed the actual limits enforced by Salesforce. This property should be enabled when working with systems that need to respect Salesforce’s exact field constraints for picklist fields.
This property is useful for developers or data architects who require precise metadata for picklist fields when designing integrations, forms, or validation logic.
Specifies whether aggregation operations such as SUM, COUNT, and GROUP BY should be performed on the Salesforce server or handled by the client.
bool
true
When ServerSideAggregation is set to true, the Cloud pushes aggregation logic to the Salesforce API, reducing client-side processing and improving efficiency for smaller or well-structured queries. However, there are limitations with server-side aggregation. For example, if you run an aggregation query on a non-primary key field that returns more than 2,000 records, Salesforce may return an EXCEEDED_ID_LIMIT error. In these cases, setting ServerSideAggregation to false forces the Cloud to perform the aggregation on the client side, allowing the query to complete without hitting this limitation.
Enabling server-side aggregation offloads processing to Salesforce and can significantly improve query speed for supported operations and smaller result sets. However, large aggregations on non-primary key fields may fail due to API limits. Disabling this property shifts aggregation processing to the client, which can avoid API errors but may increase local resource usage and processing time.
This property is useful when working with large datasets or queries that aggregate on non-primary key fields, allowing flexibility to handle limitations in Salesforce’s aggregation capabilities.
Specifies the duration, in minutes, for which a Salesforce login session is reused before expiring.
string
"10"
The Cloud creates a login session with Salesforce using the supplied authentication credentials. This session is reused for subsequent queries to avoid repeated authentication requests.
The SessionTimeout property controls how long this login session remains active. Setting SessionTimeout to 0 disables session reuse entirely, forcing the provider to authenticate on every request. This can be useful in scenarios requiring stricter security or when dealing with short-lived credential policies.
This property only applies to Basic Authentication and SSO connections. It is not used for OAuth-based authentication, as OAuth handles session expiration and token refresh differently.
This property is useful for balancing performance optimization with security requirements in environments that rely on Basic Authentication or SSO.
Specifies whether formula fields should be excluded when listing columns for Salesforce objects.
bool
false
Formula fields in Salesforce are calculated fields based on other field values. While they are useful for reporting and data transformations within Salesforce, they may not always be necessary for external querying or data loads.
When SkipFormulaFields is set to true, the Cloud excludes all formula fields from the schema when listing available columns. This can simplify the schema and reduce clutter for users who do not need these fields in queries.
Excluding formula fields can speed up schema discovery and reduce the number of columns returned in metadata queries, especially in objects that have many formula fields. However, if reporting or queries rely on formula values, skipping these fields could limit functionality and available data in query results.
This property is useful for organizations looking to streamline their data model, improve metadata loading times, or focus only on directly stored data fields.
Specifies a comma-separated list of columns for which picklist translation should be skipped when retrieving data.
string
""
When TranslatePickListFields is enabled, the Cloud automatically translates picklist values based on the user’s Salesforce language settings. However, there may be specific columns where translations are not desired, and raw picklist values should be returned instead.
The SkipPickListTranslation property allows you to specify columns that should retain their original picklist values without translation. You can specify columns either fully qualified with their table name (for example, Table1.Col1) or by column name alone if the context is clear.
This property is useful for developers or analysts who need to preserve raw picklist values for reporting, consistency in exports, or integration with other systems that depend on untranslated picklist values.
Specifying columns to skip translation can reduce unnecessary API translation overhead and improve performance in large queries. It also helps avoid mismatches between translated values and reference data in external systems. Ensure that the listed columns are accurate to prevent translation from being skipped unintentionally.
Specifies whether table columns should be sorted alphabetically by name or reported in the order provided by Salesforce.
bool
false
By default, the Cloud reports columns in the same order they are returned by Salesforce. If pseudo-columns such as metadata columns added by the Cloud are enabled, these columns are added to the end of the column list.
When SortColumns is set to true, the Cloud reports all columns in alphabetical order, including pseudo-columns. This can make it easier to navigate column lists in user interfaces or development tools that display metadata.
Sorting columns has no impact on query performance, but changes the presentation of metadata. While alphabetical ordering can improve discoverability of columns, it may make it harder to recognize the logical grouping or order Salesforce originally intended. This property is most useful in scenarios where developers or users rely on predictable, alphabetically sorted column lists for development or reporting convenience.
Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.
int
60
The timeout applies to each individual communication with the server rather than the entire query or operation. For example, a query could continue running beyond 60 seconds if each paging call completes within the timeout limit.
Timeout is set to 60 seconds by default. To disable timeouts, set this property to 0.
Disabling the timeout allows operations to run indefinitely until they succeed or fail due to other conditions such as server-side timeouts, network interruptions, or resource limits on the server.
Note: Use this property cautiously to avoid long-running operations that could degrade performance or result in unresponsive behavior.
Specifies whether picklist field values should be translated into the language of the currently authenticated Salesforce user.
bool
false
By default, the Cloud retrieves raw picklist values as stored in Salesforce. When TranslatePickListFields is set to true, the Cloud translates these values into the user’s preferred language based on their Salesforce profile settings. This helps ensure that picklist values are displayed in a familiar, localized format that matches what the user would see in the Salesforce UI.
This setting can be particularly useful for reports, dashboards, and user-facing applications where translations improve clarity and usability. However, if integration with systems or datasets that rely on raw picklist values is required, this property should remain disabled.
Enabling picklist translation may result in additional API calls or metadata lookups, which can slightly increase schema discovery time or query overhead. Additionally, maintaining consistency with external systems that store untranslated values may require disabling this property or using SkipPickListTranslation for selective control.
This property is useful for organizations that support multi-language environments and want their picklist fields to appear in the local language for each authenticated user.
Specifies whether to use display names for columns instead of their API names when listing metadata and querying data.
bool
false
By default, the Cloud surfaces column names using the Salesforce API names, which are static and developer-focused. When UseDisplayNames is set to true, the Cloud uses the display names for columns, matching what users see in the Salesforce UI. This can make working with queries and metadata more intuitive for users who are familiar with the Salesforce interface rather than the underlying API terminology.
Use this property if you are building reports or queries intended for end users or business users who expect to see field names as they appear in the Salesforce UI.
Enabling UseDisplayNames may slightly increase metadata processing time due to the additional handling required to map API names to display names. However, it does not increase the number of metadata API calls. Because display names can be modified by Salesforce administrators, using them may reduce query stability over time. For long-term integrations, API names are recommended due to their consistency.
This property is useful for improving readability and user-friendliness when building UI-based reports or business-facing queries.
Specifies whether to use the Salesforce Tooling API for retrieving and modifying metadata and development-related objects.
bool
false
When UseToolingAPI is set to true, the provider uses Salesforce’s Tooling API instead of standard data APIs. The Tooling API is designed for development, deployment, and debugging tasks, allowing access to metadata types, Apex classes, triggers, and other development-related entities.
This property is useful for developers who need to query metadata objects, inspect Apex code, or perform other administrative and development-related operations that are not available via the standard REST or SOAP APIs.
When UseToolingAPI is set to false, the Cloud uses the standard Salesforce APIs, which focus on business data rather than metadata and development tooling.
Using the Tooling API provides access to specialized metadata and development objects but is limited to specific entity types. It is not intended for large data operations or standard CRM records. Enabling this property has no performance impact on normal data queries, but is only relevant for metadata or tooling queries.
This property is useful for tasks like metadata inspection, Apex monitoring, and debugging deployments within Salesforce development environments.
LZMA from 7Zip LZMA SDK
LZMA SDK is placed in the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
LZMA2 from XZ SDK
Version 1.9 and older are in the public domain.
Xamarin.Forms
Xamarin SDK
The MIT License (MIT)
Copyright (c) .NET Foundation Contributors
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
NSIS 3.10
Copyright (C) 1999-2025 Contributors THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
1. DEFINITIONS
"Contribution" means:
a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor:
i) changes to the Program, and
ii) additions to the Program;
where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
"Contributor" means any person or entity that distributes the Program.
"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.
"Program" means the Contributions distributed in accordance with this Agreement.
"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
2. GRANT OF RIGHTS
a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
3. REQUIREMENTS
A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
a) it complies with the terms and conditions of this Agreement; and
b) its license agreement:
i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.
When the Program is made available in source code form:
a) it must be made available under this Agreement; and
b) a copy of this Agreement must be included with each copy of the Program.
Contributors may not remove or alter any copyright notices contained within the Program.
Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.
4. COMMERCIAL DISTRIBUTION
Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.
For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.
5. NO WARRANTY
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.
6. DISCLAIMER OF LIABILITY
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
7. GENERAL
If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.
All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.
Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.