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.
If you want to use a Salesforce sandbox account:
The following subsections describe both connection methods.
First request the security token from Salesforce:
When you are ready to connect, set these parameters:
When you are ready to connect, set these parameters:
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.Â
Logging in with Client Grant requires the creation of a custom OAuth application, as described in Creating a Custom OAuth Application
To enable authentication via client credentials, set these properties:
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.
Note: Certain views cannot be queried directly and may require filters. In this case, specify the required filter in the WHERE clause to query them.
| 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. |
| BulkJobs | Returns information about existing Bulk API jobs, including both Bulk API v1 and Bulk API v2. |
| 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. |
| PicklistValueDependency | Contains predefined picklist relations for fields across different Salesforce objects. |
| 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 | Contains details for Salesforce Sites or Experience Cloud (Community Cloud) sites. |
| 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 | Represents the field-level security (FLS) for a specific user on a specific field, such as whether the user can read, create, or update the field. |
| 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. |
Returns information about existing Bulk API jobs, including both Bulk API v1 and Bulk API v2.
| Name | Type | References | Description |
| JobId | String | Unique identifier of the Bulk API job. | |
| JobType | String | Type of Bulk API job, such as V2Query, V2Ingest or Classic. | |
| BulkApiVersion | String | The Bulk API version in which the job was created. Valid values include V1, V2. | |
| OperationCategory | String | Specifies the category of the job. Valid values include 'INGEST' (data load), 'QUERY' (data extraction) | |
| OperationName | String | Operation performed by the job, such as query, insert, update, or delete. | |
| ObjectName | String | Salesforce object that the Bulk API job operates on. | |
| CreatedById | String | ID of the user who created the Bulk API job. | |
| CreatedDate | Datetime | Timestamp indicating when the Bulk API job was created. | |
| SystemModstamp | Datetime | Timestamp of the last system modification to the Bulk API job. | |
| State | String | Current state of the Bulk API job, such as Open, InProgress, or JobComplete. | |
| ConcurrencyMode | String | Concurrency mode used by the job, indicating whether processing is serial or parallel. | |
| ContentType | String | Content type used for job data, such as CSV. | |
| ContentUrl | String | Content url for this job. | |
| ApiVersion | String | Salesforce API version used when the Bulk API job was created. | |
| LineEnding | String | Line ending format used in the job data, such as LF or CRLF. | |
| ColumnDelimiter | String | Delimiter used to separate columns in the job data, such as COMMA. | |
| ExternalIdFieldName | String | Name of the external id field used in this action. |
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 |