- Overview
- Setup Guide
- Permissions
- Troubleshooting
CRM Data
Users, accounts, contacts, opportunitiesMetadata & Reports
Object schemas, reports, dashboardsData streams
This Provider Plugin defines 60 data streams.| Stream | Description | Sync |
|---|---|---|
users | Salesforce users | full |
login_history | Salesforce user login history | incremental |
events | Salesforce calendar and activity events | incremental |
accounts | Salesforce accounts (companies/organizations) | incremental |
contacts | Salesforce contacts (people associated with accounts) | incremental |
opportunities | Salesforce opportunities (sales deals) | incremental |
tasks | Salesforce tasks (to-do items and activities) | incremental |
products | Salesforce products catalog | full |
opportunity_line_items | Salesforce opportunity line items (products on opportunities) | incremental |
contracts | Salesforce contracts | incremental |
contract_history | Salesforce contract field change history | incremental |
opportunity_history | Salesforce opportunity field change history | incremental |
event_log_files | Salesforce event log files (setup audit trail). Requires CSV response parsing. | incremental |
opportunity_contact_roles | Salesforce opportunity-contact role junction records | incremental |
task_relations | Salesforce task relation junction records (Shared Activities) | incremental |
event_relations | Salesforce event relation junction records (Shared Activities) | incremental |
account_contact_relations | Salesforce account-contact many-to-many junction records | incremental |
partners | Salesforce polymorphic partner relationship records | incremental |
contract_contact_roles | Salesforce contract-contact role junction records | incremental |
case_contact_roles | Salesforce case-contact role junction records | incremental |
channel_program_members | Salesforce channel program member junction records | incremental |
record_types | Salesforce record type reference catalog | full |
pricebooks | Salesforce pricebook reference catalog | full |
pricebook_entries | Salesforce pricebook entry bridge (Product2 to Pricebook2) | full |
opportunity_split_types | Salesforce opportunity split type metadata | full |
account_team_members | Salesforce account team member records | incremental |
opportunity_team_members | Salesforce opportunity team member records | incremental |
cases | Salesforce case records | incremental |
campaign_members | Salesforce campaign member records | incremental |
leads | Salesforce lead records | incremental |
contract_line_items | Salesforce contract line item records | incremental |
opportunity_line_item_schedules | Salesforce opportunity line item schedule records | incremental |
opportunity_competitors | Salesforce opportunity competitor records | incremental |
assets | Salesforce asset records | incremental |
quotes | Salesforce quote records | incremental |
quote_line_items | Salesforce quote line item records | incremental |
opportunity_splits | Salesforce opportunity split records | incremental |
orders | Salesforce order records | incremental |
order_items | Salesforce order item records | incremental |
backend_ids | Digital Turbine custom Backend ID records mapping Salesforce accounts to external system IDs | incremental |
service_contract_events | Salesforce custom Service_Contract_Event__c records | incremental |
proposals | Salesforce custom Proposal__c records | incremental |
sow_master_line_items | Salesforce custom SOW_Master_Line_Item__c records | incremental |
custom_tasks | Salesforce custom task__c records (distinct from standard Task / tasks tap) | incremental |
lots | Salesforce custom Lot__c records | incremental |
sows | Salesforce custom SOW__c records | incremental |
phases | Salesforce custom Phase__c records | incremental |
projects | Salesforce custom Project__c records | incremental |
builder_communities | Salesforce custom Builder_Community__c records | incremental |
properties | Salesforce custom property__c records | incremental |
service_contract_events_history | Field history for Salesforce Service_Contract_Event__c | incremental |
proposals_history | Field history for Salesforce Proposal__c | incremental |
sow_master_line_items_history | Field history for Salesforce SOW_Master_Line_Item__c | incremental |
custom_tasks_history | Field history for Salesforce task__c | incremental |
lots_history | Field history for Salesforce Lot__c | incremental |
sows_history | Field history for Salesforce SOW__c | incremental |
phases_history | Field history for Salesforce Phase__c | incremental |
projects_history | Field history for Salesforce Project__c | incremental |
builder_communities_history | Field history for Salesforce Builder_Community__c | incremental |
properties_history | Field history for Salesforce property__c | incremental |
OAuth
What You’ll Need
| Credential | What it is |
|---|---|
| Client ID | Consumer Key from Connected App |
| Client Secret | Consumer Secret from Connected App |
| My Domain | Your Salesforce My Domain subdomain (e.g., acme — the acme part of acme.my.salesforce.com) |
Info: Setup access in Salesforce. These steps require Administrator, or a colleague with equivalent permissions who can create credentials for you. If that is not you, ask your Salesforce administrator.
- System Administrator profile or equivalent permissions
- Permission to create Connected Apps
- API access enabled for your organization
- My Domain enabled (required for client credentials flow)
Step 1: Navigate to App Manager
- Log in to Salesforce
- Click the gear icon → Setup
- Search for “App Manager” in Quick Find
- Click App Manager
Step 2: Create Connected App
- Click New Connected App
- Fill in basic information:
| Field | Value |
|---|---|
| Connected App Name | Parable Integration |
| API Name | Parable_Integration |
| Contact Email | Your admin email |
Step 3: Enable OAuth Settings
- Check Enable OAuth Settings
- Set Callback URL:
https://login.salesforce.com/services/oauth2/callback(placeholder — not used by client credentials flow) - Under Selected OAuth Scopes, add only:
Manage user data via APIs (api)
Info: Only theapiscope is required and sufficient. Do not addFull access (full)orPerform requests at any time (refresh_token, offline_access)— the client credentials flow never issues a refresh token, and as of Salesforce Winter ‘26 (Sept 2025), a missing or invalid-only scope set returnsinvalid_grant: no valid scopes defined.
Step 4: Enable Client Credentials Flow
- After saving, go back to your Connected App
- Click Manage → Edit Policies
- Under Client Credentials Flow, check Enable Client Credentials Flow
- Set the Run As user to a dedicated Integration User (not a personal admin) — see required permissions below
- Click Save
Warning: The “Run As” user determines the permissions for all API calls. Use a dedicated integration user, not a personal admin account.Run-As User — required object permissions (Read on each):
| Object | Purpose |
|---|---|
| User | User directory |
| LoginHistory | Login audit |
| Event | Calendar / activity events |
| Account, Contact, Opportunity, OpportunityLineItem, OpportunityFieldHistory | CRM core |
| Task | Activities |
| Product2 | Product catalog |
| Contract, ContractHistory | Contract lifecycle |
Step 5: Save and Wait
- Click Save
- Wait 2-10 minutes for the app to activate
Warning: Salesforce may take several minutes to propagate the new Connected App.
Step 6: Get Consumer Credentials
- Return to App Manager
- Find your app → Click the dropdown → View
- Click Manage Consumer Details (may require re-authentication)
- Copy:
- Consumer Key (Client ID)
- Consumer Secret (Client Secret)
- Find your My Domain subdomain: go to Setup → My Domain. Under My Domain Details, note the value before
.my.salesforce.com(e.g.,acmefromacme.my.salesforce.com).
Step 7: Enter values in the form
- Client ID, Client Secret, and My Domain: Paste the Consumer Key, Consumer Secret, and My Domain subdomain from Salesforce.
- Click Save & test connection.
curl -X POST https://YOUR-DOMAIN.my.salesforce.com/services/oauth2/token \
-d "grant_type=client_credentials" \
-d "client_id=YOUR_CLIENT_ID" \
-d "client_secret=YOUR_CLIENT_SECRET"
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
"https://YOUR-DOMAIN.my.salesforce.com/services/data/v62.0/query?q=SELECT+Id,Name+FROM+User+LIMIT+5"
Info: Parable posts to your My Domain URL (https://your-org.my.salesforce.com/services/oauth2/token). Make sure My Domain is enabled and that you have provided the correct subdomain to Parable. (Salesforce also supportslogin.salesforce.comfor this flow, but Parable does not use it.)
Success: Success! If you received a 200 OK response with valid data, your credentials are configured correctly. You can now configure this Provider in Parable.
Tip: Paste Consumer Key and Consumer Secret into the Parable Provider form, complete OAuth if prompted, then click Save & test connection.
Tip: Rate Limits: Salesforce enforces rate limits of API call limits vary by edition; check your org limits in Setup. Parable handles rate limiting automatically with exponential backoff, but initial syncs of large datasets may take longer due to these limits.
Account Contact Relations
Account Contact Relations
account_contact_relationsAccount Contact Relations covers Salesforce account-contact many-to-many junction records.- Enables: resolve the business relationship represented by each Account Contact Relations row between its explicitly referenced Salesforce records.
- Scope: Salesforce account-contact many-to-many junction records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
account_contact_relations.AccountIdAccount ID records account ID. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is an identifier, not a measured quantity.
Attributes
Attributes
account_contact_relations.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Account Contact Relations record. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is one nested object per containing Salesforce Account Contact Relation object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
account_contact_relations.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Account Contact Relations rows by the exact Salesforce-returned type value.- Enables: separate Account Contact Relations rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Account Contact Relations; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
account_contact_relations.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Account Contact Relations record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Account Contact Relations; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Contact ID
Contact ID
account_contact_relations.ContactIdContact ID records contact ID. It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is an identifier, not a measured quantity.
ID
ID
account_contact_relations.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Account Contact Relations row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Account Contact Relations and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Active
Is Active
account_contact_relations.IsActiveIs Active records whether the relationship is active. It is needed to distinguish Account Contact Relations rows by the exact Salesforce-returned is active value.- Enables: select Account Contact Relations rows where
IsActiveis true or false when comparing the condition described by Is Active. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is interpreted at one Salesforce Account Contact Relation record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
account_contact_relations.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Account Contact Relations rows by the exact Salesforce-returned is deleted value.- Enables: select Account Contact Relations rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is interpreted at one Salesforce Account Contact Relation record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Direct
Is Direct
account_contact_relations.IsDirectIs Direct records whether this is the direct (primary) account relationship. It is needed to distinguish Account Contact Relations rows by the exact Salesforce-returned is direct value.- Enables: select Account Contact Relations rows where
IsDirectis true or false when comparing the condition described by Is Direct. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is interpreted at one Salesforce Account Contact Relation record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
account_contact_relations.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Account Contact Relations records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is interpreted at one Salesforce Account Contact Relation record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Roles
Roles
account_contact_relations.RolesRoles records relationship roles. It is needed to preserve the business or contact responsibility assigned to this relationship.- Enables: filter account-contact relationship rows by the exact
Roleslabel and attribute the contact’s stated relationship to the account. - Interpretation: Salesforce reports this value on the Salesforce Account Contact Relation object returned for Account Contact Relations; it is interpreted at one Salesforce Account Contact Relation record per row; the value describes business or contact participation, not an application authorization grant.
Account Team Members
Account Team Members
account_team_membersAccount Team Members covers Salesforce account team member records.- Enables: resolve the business relationship represented by each Account Team Members row between its explicitly referenced Salesforce records.
- Scope: Salesforce account team member records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
account_team_members.AccountIdAccount ID records account ID. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account Team Member object returned for Account Team Members; it is an identifier, not a measured quantity.
Attributes
Attributes
account_team_members.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Account Team Members record. - Interpretation: Salesforce reports this value on the Salesforce Account Team Member object returned for Account Team Members; it is one nested object per containing Salesforce Account Team Member object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
account_team_members.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Account Team Members rows by the exact Salesforce-returned type value.- Enables: separate Account Team Members rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Account Team Members; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
account_team_members.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Account Team Members record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Account Team Members; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
account_team_members.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Account Team Members row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Account Team Members and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Account Team Member object returned for Account Team Members; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
account_team_members.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Account Team Members rows by the exact Salesforce-returned is deleted value.- Enables: select Account Team Members rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Account Team Member object returned for Account Team Members; it is interpreted at one Salesforce Account Team Member record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
account_team_members.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Account Team Members records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account Team Member object returned for Account Team Members; it is interpreted at one Salesforce Account Team Member record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Team Member Role
Team Member Role
account_team_members.TeamMemberRoleTeam Member Role records role on the account team. It is needed to preserve the business or contact responsibility assigned to this relationship.- Enables: filter Account Team Members rows by the exact
TeamMemberRolelabel and attribute the team member’s stated business responsibility to the related Salesforce record. - Interpretation: Salesforce reports this value on the Salesforce Account Team Member object returned for Account Team Members; it is interpreted at one Salesforce Account Team Member record per row; the value describes business or contact participation, not an application authorization grant.
User ID
User ID
account_team_members.UserIdUser ID records team member User ID. It is needed to refer to the same user across records without relying on display text.- Enables: match
UserIdto user references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account Team Member object returned for Account Team Members; it is an identifier, not a measured quantity.
Accounts
Accounts
accountsAccounts covers Salesforce accounts (companies/organizations).- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce accounts (companies/organizations); the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account Number
Account Number
accounts.AccountNumberAccount Number records account number assigned to this account. It is needed to refer to the same account number across records without relying on display text.- Enables: match
AccountNumberto account number references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Account Source
Account Source
accounts.AccountSourceAccount Source records source of the account record (e.g., Web, Phone Inquiry, Partner Referral). It is needed to distinguish Accounts rows by the exact Salesforce-returned account source value.- Enables: separate Accounts rows by the exact Salesforce-returned
AccountSourcelabel when comparing account source. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Active C
Active C
accounts.Active__cActive C records custom field indicating whether the account is active. It is needed to distinguish Accounts rows by the exact Salesforce-returned active c value.- Enables: separate Accounts rows by the exact Salesforce-returned
Active__clabel when comparing active c. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Annual Revenue
Annual Revenue
accounts.AnnualRevenueAnnual Revenue records estimated annual revenue of the account. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
AnnualRevenueamount for Accounts records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Attributes
Attributes
accounts.attributesAttributes records Salesforce sObject metadata attributes. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Accounts record. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is one nested object per containing Salesforce Account object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
accounts.attributes.typeType records the sObject type name (e.g., Account). It is needed to distinguish Accounts rows by the exact Salesforce-returned type value.- Enables: separate Accounts rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Accounts; it is interpreted at one S Object Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
accounts.attributes.urlURL records relative URL path to the record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Accounts record as provenance. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Accounts; it is link at one S Object Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Billing Address
Billing Address
accounts.BillingAddressBilling Address records compound billing address object. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingAddressfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is one nested object per containing Salesforce Account object when present; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
City
City
accounts.BillingAddress.cityCity records city name. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
cityfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Accounts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Country
Country
accounts.BillingAddress.countryCountry records country name. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
countryfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Accounts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Geocode Accuracy
Geocode Accuracy
accounts.BillingAddress.geocodeAccuracyGeocode Accuracy records accuracy level of the geocode. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
geocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Accounts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Latitude
Latitude
accounts.BillingAddress.latitudeLatitude records latitude coordinate. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
latitudefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Accounts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Longitude
Longitude
accounts.BillingAddress.longitudeLongitude records longitude coordinate. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
longitudefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Accounts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Postal Code
Postal Code
accounts.BillingAddress.postalCodePostal Code records postal or ZIP code. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
postalCodefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Accounts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
State
State
accounts.BillingAddress.stateState records state or province. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
statefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Accounts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Street
Street
accounts.BillingAddress.streetStreet records street address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
streetfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Accounts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing City
Billing City
accounts.BillingCityBilling City records city for the billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingCityfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing Country
Billing Country
accounts.BillingCountryBilling Country records country for the billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingCountryfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing Geocode Accuracy
Billing Geocode Accuracy
accounts.BillingGeocodeAccuracyBilling Geocode Accuracy records accuracy level of the geocode for the billing address. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
BillingGeocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Billing Latitude
Billing Latitude
accounts.BillingLatitudeBilling Latitude records latitude of the billing address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
BillingLatitudefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing Longitude
Billing Longitude
accounts.BillingLongitudeBilling Longitude records longitude of the billing address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
BillingLongitudefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing Postal Code
Billing Postal Code
accounts.BillingPostalCodeBilling Postal Code records postal or ZIP code for the billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingPostalCodefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Billing State
Billing State
accounts.BillingStateBilling State records state or province for the billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingStatefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Billing Street
Billing Street
accounts.BillingStreetBilling Street records street address for the billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingStreetfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Clean Status
Clean Status
accounts.CleanStatusClean Status records data.com clean status of the account. It is needed to distinguish Accounts rows by the exact Salesforce-returned clean status value.- Enables: separate Accounts rows by the exact Salesforce-returned
CleanStatuslabel when comparing clean status. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Created By ID
Created By ID
accounts.CreatedByIdCreated By ID records user ID of the user who created the account. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Created Date
Created Date
accounts.CreatedDateCreated Date records timestamp when the account was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Accounts records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema uses the
Temporal.DateTimescalar.
Customer Priority C
Customer Priority C
accounts.CustomerPriority__cCustomer Priority C records custom field for customer priority level. It is needed to distinguish Accounts rows by the exact Salesforce-returned customer priority c value.- Enables: separate Accounts rows by the exact Salesforce-returned
CustomerPriority__clabel when comparing customer priority c. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Dandb Company ID
Dandb Company ID
accounts.DandbCompanyIdDandb Company ID records ID of the associated Data.com D&B company record. It is needed to refer to the same dandb company across records without relying on display text.- Enables: match
DandbCompanyIdto dandb company references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Description
Description
accounts.DescriptionDescription records text description of the account. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is description text at one Salesforce Account record per row; this is only the content included in the Salesforce response for this record.
Duns Number
Duns Number
accounts.DunsNumberDuns Number records dun & Bradstreet D-U-N-S Number. It is needed to refer to the same duns number across records without relying on display text.- Enables: match
DunsNumberto duns number references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Fax
Fax
accounts.FaxFax records fax number for the account. It is needed to preserve the exact Salesforce-reported contact number for the person, company, or location represented by this row.- Enables: match the exact contact number in
Faxto the same Salesforce Account record without treating it as an account identifier. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row.
ID
ID
accounts.IdID records unique Salesforce identifier for the account. It is needed to distinguish repeated deliveries of the same Accounts row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Accounts and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Industry
Industry
accounts.IndustryIndustry records industry classification of the account. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Accounts records by
Industryonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Is Customer Portal
Is Customer Portal
accounts.IsCustomerPortalIs Customer Portal records whether the account has an associated customer portal user. It is needed to distinguish Accounts rows by the exact Salesforce-returned is customer portal value.- Enables: select Accounts rows where
IsCustomerPortalis true or false when comparing the condition described by Is Customer Portal. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
accounts.IsDeletedIs Deleted records whether the account has been soft-deleted. It is needed to distinguish Accounts rows by the exact Salesforce-returned is deleted value.- Enables: select Accounts rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Jigsaw
Jigsaw
accounts.JigsawJigsaw records data.com (Jigsaw) key for the account. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Accounts records by
Jigsawonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Jigsaw Company ID
Jigsaw Company ID
accounts.JigsawCompanyIdJigsaw Company ID records data.com company ID. It is needed to refer to the same jigsaw company across records without relying on display text.- Enables: match
JigsawCompanyIdto jigsaw company references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Last Activity Date
Last Activity Date
accounts.LastActivityDateLast Activity Date records date of the last activity (task or event) on the account. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Accounts records by
LastActivityDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema uses the
Temporal.Datescalar.
Last Modified By ID
Last Modified By ID
accounts.LastModifiedByIdLast Modified By ID records user ID of the user who last modified the account. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
accounts.LastModifiedDateLast Modified Date records timestamp when the account was last modified by a user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Accounts records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar.
Last Referenced Date
Last Referenced Date
accounts.LastReferencedDateLast Referenced Date records timestamp when the current user last referenced the account. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Accounts records by
LastReferencedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema uses the
Temporal.DateTimescalar.
Last Viewed Date
Last Viewed Date
accounts.LastViewedDateLast Viewed Date records timestamp when the current user last viewed the account. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Accounts records by
LastViewedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema uses the
Temporal.DateTimescalar.
Master Record ID
Master Record ID
accounts.MasterRecordIdMaster Record ID records ID of the master record if this account was merged and deleted. It is needed to refer to the same master record across records without relying on display text.- Enables: match
MasterRecordIdto master record references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Naics Code
Naics Code
accounts.NaicsCodeNaics Code records north American Industry Classification System code. It is needed to distinguish Accounts rows by the exact Salesforce-returned naics code value.- Enables: separate Accounts rows by the exact Salesforce-returned
NaicsCodelabel when comparing naics code. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Naics Desc
Naics Desc
accounts.NaicsDescNaics Desc records NAICS code description. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Accounts records by
NaicsDesconly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Name
Name
accounts.NameName records name of the account (company or person). It is needed to compare the returned name for individual Accounts rows and select rows with a specific Name value.- Enables: locate Accounts rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema uses the
Identity.Namescalar.
Number Of Employees
Number Of Employees
accounts.NumberOfEmployeesNumber Of Employees records number of employees at the account. It is needed to measure the Salesforce-reported number of employees at the account at one Salesforce Account record per row.- Enables: measure and compare the Salesforce-reported number of employees at the account in
NumberOfEmployeesat one Salesforce Account record per row. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is a Salesforce-reported count at one Salesforce Account record per row.
Numberof Locations C
Numberof Locations C
accounts.NumberofLocations__cNumberof Locations C records custom field for number of business locations. It is needed to measure the Salesforce-reported number of numberof locations c at one Salesforce Account record per row.- Enables: measure and compare the Salesforce-reported number of numberof locations c in
NumberofLocations__cat one Salesforce Account record per row. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is a Salesforce-reported count at one Salesforce Account record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Operating Hours ID
Operating Hours ID
accounts.OperatingHoursIdOperating Hours ID records ID of the associated operating hours record. It is needed to refer to the same operating hours across records without relying on display text.- Enables: match
OperatingHoursIdto operating hours references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; its unit or granularity is hours.
Owner ID
Owner ID
accounts.OwnerIdOwner ID records user ID of the account owner. It is needed to refer to the same owner across records without relying on display text.- Enables: match
OwnerIdto owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Ownership
Ownership
accounts.OwnershipOwnership records ownership type of the account (e.g., Public, Private, Subsidiary). It is needed to attribute this Accounts row to the returned person, account, or organization reference.- Enables: attribute the Accounts row to the returned person or account and match the exact
Ownershipvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row.
Parent ID
Parent ID
accounts.ParentIdParent ID records ID of the parent account in a hierarchy. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity.
Phone
Phone
accounts.PhonePhone records primary phone number for the account. It is needed to preserve the exact Salesforce-reported contact number for the person, company, or location represented by this row.- Enables: match the exact contact number in
Phoneto the same Salesforce Account record without treating it as an account identifier. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema uses the
Contact.PhoneNumberscalar.
Photo URL
Photo URL
accounts.PhotoUrlPhoto URL records URL of the account’s photo. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
PhotoUrlwhile retaining the containing Accounts record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is link at one Salesforce Account record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
Rating
Rating
accounts.RatingRating records rating of the account (e.g., Hot, Warm, Cold). It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Accounts records by
Ratingonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Record Type ID
Record Type ID
accounts.RecordTypeIdRecord Type ID records ID of the record type assigned to this account. It is needed to refer to the same record type across records without relying on display text.- Enables: match
RecordTypeIdto record type references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is an identifier, not a measured quantity; classification values are Salesforce-returned labels rather than a universal taxonomy.
Shipping Address
Shipping Address
accounts.ShippingAddressShipping Address records compound shipping address object. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingAddressfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is one nested object per containing Salesforce Account object when present; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping City
Shipping City
accounts.ShippingCityShipping City records city for the shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingCityfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping Country
Shipping Country
accounts.ShippingCountryShipping Country records country for the shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingCountryfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping Geocode Accuracy
Shipping Geocode Accuracy
accounts.ShippingGeocodeAccuracyShipping Geocode Accuracy records accuracy level of the geocode for the shipping address. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
ShippingGeocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Shipping Latitude
Shipping Latitude
accounts.ShippingLatitudeShipping Latitude records latitude of the shipping address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
ShippingLatitudefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping Longitude
Shipping Longitude
accounts.ShippingLongitudeShipping Longitude records longitude of the shipping address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
ShippingLongitudefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping Postal Code
Shipping Postal Code
accounts.ShippingPostalCodeShipping Postal Code records postal or ZIP code for the shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingPostalCodefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Shipping State
Shipping State
accounts.ShippingStateShipping State records state or province for the shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingStatefor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Shipping Street
Shipping Street
accounts.ShippingStreetShipping Street records street address for the shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingStreetfor individual Accounts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Sic
Sic
accounts.SicSic records standard Industrial Classification code. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Accounts records by
Siconly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Sic Desc
Sic Desc
accounts.SicDescSic Desc records description of the SIC code. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Accounts records by
SicDesconly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Site
Site
accounts.SiteSite records name of the account’s location (e.g., headquarters). It is needed to qualify the Salesforce-reported account location or geocode context.- Enables: interpret the sibling address or location fields using
Siteas their returned label or accuracy qualifier. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; this Salesforce-reported label does not establish residency or verified physical presence.
SLA C
SLA C
accounts.SLA__cSLA C records custom field for service level agreement type. It is needed to preserve the configured Salesforce org’s specific sla c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Accounts rows by the exact custom
SLA__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
SLA Expiration Date C
SLA Expiration Date C
accounts.SLAExpirationDate__cSLA Expiration Date C records custom field for SLA expiration date. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Accounts records by
SLAExpirationDate__c, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema uses the
Temporal.Datescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
SLA Serial Number C
SLA Serial Number C
accounts.SLASerialNumber__cSLA Serial Number C records custom field for SLA serial number. It is needed to preserve the configured Salesforce org’s specific sla serial number c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Accounts rows by the exact custom
SLASerialNumber__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
accounts.SystemModstampSystem Modstamp records system-maintained timestamp of last modification including automated changes. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Accounts records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Ticker Symbol
Ticker Symbol
accounts.TickerSymbolTicker Symbol records stock ticker symbol for the account. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Accounts records by
TickerSymbolonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Tradestyle
Tradestyle
accounts.TradestyleTradestyle records trade name or DBA (doing business as) name. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Accounts records by
Tradestyleonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Type
Type
accounts.TypeType records account type such as Customer, Partner, or Prospect. It is needed to distinguish Accounts rows by the exact Salesforce-returned type value.- Enables: separate Accounts rows by the exact Salesforce-returned
Typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Upsell Opportunity C
Upsell Opportunity C
accounts.UpsellOpportunity__cUpsell Opportunity C records custom field indicating upsell opportunity status. It is needed to preserve the configured Salesforce org’s specific upsell opportunity c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Accounts rows by the exact custom
UpsellOpportunity__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Website
Website
accounts.WebsiteWebsite records URL of the account’s website. It is needed to retain the exact Salesforce resource or external link reported for this Accounts record.- Enables: open or correlate the resource named by
Websitewhile retaining the containing Salesforce Account row as provenance. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
Year Started
Year Started
accounts.YearStartedYear Started records year the company was established. It is needed to compare the returned year started for individual Accounts rows and select rows with a specific YearStarted value.- Enables: trace the year started relationship returned in
YearStartedfrom the Salesforce Account row to its named Salesforce context. - Interpretation: Salesforce reports this value on the Salesforce Account object returned for Accounts; it is interpreted at one Salesforce Account record per row.
Assets
Assets
assetsAssets covers Salesforce asset records.- Enables: trace the returned commercial or delivery record through its parent reference, status, dates, quantities, and monetary fields.
- Scope: Salesforce asset records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
assets.AccountIdAccount ID records account ID. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is an identifier, not a measured quantity.
Attributes
Attributes
assets.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Assets record. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is one nested object per containing Salesforce Asset object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
assets.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Assets rows by the exact Salesforce-returned type value.- Enables: separate Assets rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Assets; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
assets.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Assets record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Assets; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Contact ID
Contact ID
assets.ContactIdContact ID records contact ID. It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is an identifier, not a measured quantity.
ID
ID
assets.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Assets row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Assets and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
assets.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Assets rows by the exact Salesforce-returned is deleted value.- Enables: select Assets rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is interpreted at one Salesforce Asset record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
assets.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Assets records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is interpreted at one Salesforce Asset record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Name
Name
assets.NameName records asset name. It is needed to compare the returned name for individual Assets rows and select rows with a specific Name value.- Enables: locate Assets rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is interpreted at one Salesforce Asset record per row.
Product2 ID
Product2 ID
assets.Product2IdProduct2 ID records product ID. It is needed to refer to the same product2 across records without relying on display text.- Enables: match
Product2Idto product2 references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is an identifier, not a measured quantity.
Serial Number
Serial Number
assets.SerialNumberSerial Number records serial number. It is needed to refer to the same serial number across records without relying on display text.- Enables: match
SerialNumberto serial number references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is an identifier, not a measured quantity.
Status
Status
assets.StatusStatus records asset status. It is needed to distinguish Assets rows by the exact Salesforce-returned status value.- Enables: separate Assets rows by the exact Salesforce-returned
Statuslabel when comparing status. - Interpretation: Salesforce reports this value on the Salesforce Asset object returned for Assets; it is interpreted at one Salesforce Asset record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Backend IDs
Backend IDs
backend_idsBackend IDs covers Digital Turbine custom Backend ID records mapping Salesforce accounts to external system IDs.- Enables: trace each org-specific Backend IDs row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Digital Turbine custom Backend ID records mapping Salesforce accounts to external system IDs; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Account C
Account C
backend_ids.Account__cAccount C records lookup to the related Salesforce Account (primary AccountId mapping for DT). It is needed to preserve the configured Salesforce org’s specific account c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Backend IDs rows by the exact custom
Account__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Active C
Active C
backend_ids.Active__cActive C records whether this Backend ID is active. It is needed to distinguish Backend IDs rows by the exact Salesforce-returned active c value.- Enables: select Backend IDs rows where
Active__cis true or false when comparing the condition described by Active C. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Aggregator Account C
Aggregator Account C
backend_ids.Aggregator_Account__cAggregator Account C records lookup to the related aggregator Salesforce Account when present. It is needed to preserve the configured Salesforce org’s specific aggregator account c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Backend IDs rows by the exact custom
Aggregator_Account__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Attributes
Attributes
backend_ids.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Backend IDs record. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is one nested object per containing Salesforce Backend Id object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
backend_ids.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Backend IDs rows by the exact Salesforce-returned type value.- Enables: separate Backend IDs rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Backend IDs; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
backend_ids.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Backend IDs record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Backend IDs; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
backend_ids.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Backend IDs records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
backend_ids.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Backend IDs row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Backend IDs and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
backend_ids.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Backend IDs rows by the exact Salesforce-returned is deleted value.- Enables: select Backend IDs rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
backend_ids.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Backend IDs records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
backend_ids.NameName records backend ID display name (e.g. B-41384). It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Backend IDs rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Network ID C
Network ID C
backend_ids.Network_ID__cNetwork ID C records external network identifier mapped from this Backend ID. It is needed to refer to the same network c across records without relying on display text.- Enables: match
Network_ID__cto network c references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is an identifier, not a measured quantity; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
NNB End Date C
NNB End Date C
backend_ids.NNB_End_Date__cNNB End Date C records NNB end date. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Backend IDs records by
NNB_End_Date__c, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; the schema uses the
Temporal.Datescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
NNB Start Date C
NNB Start Date C
backend_ids.NNB_Start_Date__cNNB Start Date C records NNB start date. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Backend IDs records by
NNB_Start_Date__c, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; the schema uses the
Temporal.Datescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Product ID C
Product ID C
backend_ids.Product_ID__cProduct ID C records external product identifier mapped from this Backend ID. It is needed to refer to the same product c across records without relying on display text.- Enables: match
Product_ID__cto product c references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is an identifier, not a measured quantity; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Product Type C
Product Type C
backend_ids.Product_Type__cProduct Type C records product type classification (e.g. Advertiser). It is needed to distinguish Backend IDs rows by the exact Salesforce-returned product type c value.- Enables: separate Backend IDs rows by the exact Salesforce-returned
Product_Type__clabel when comparing product type c. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
backend_ids.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Backend IDs records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Unique C
Unique C
backend_ids.Unique__cUnique C records DT unique composite key for the Backend ID row. It is needed to preserve the configured Salesforce org’s specific unique c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Backend IDs rows by the exact custom
Unique__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Backend Id object returned for Backend IDs; it is interpreted at one Salesforce Backend Id record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Builder Communities
Builder Communities
builder_communitiesBuilder Communities covers Salesforce custom Builder_Community__c records.- Enables: trace each org-specific Builder Communities row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
Builder_Community__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
builder_communities.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Builder Communities record. - Interpretation: Salesforce reports this value on the Salesforce Builder Community object returned for Builder Communities; it is one nested object per containing Salesforce Builder Community object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
builder_communities.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Builder Communities rows by the exact Salesforce-returned type value.- Enables: separate Builder Communities rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Builder Communities; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
builder_communities.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Builder Communities record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Builder Communities; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
builder_communities.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Builder Communities records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Builder Community object returned for Builder Communities; it is interpreted at one Salesforce Builder Community record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
builder_communities.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Builder Communities row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Builder Communities and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Builder Community object returned for Builder Communities; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
builder_communities.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Builder Communities rows by the exact Salesforce-returned is deleted value.- Enables: select Builder Communities rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Builder Community object returned for Builder Communities; it is interpreted at one Salesforce Builder Community record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
builder_communities.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Builder Communities records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Builder Community object returned for Builder Communities; it is interpreted at one Salesforce Builder Community record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
builder_communities.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Builder Communities rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Builder Community object returned for Builder Communities; it is interpreted at one Salesforce Builder Community record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
builder_communities.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Builder Communities records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Builder Community object returned for Builder Communities; it is interpreted at one Salesforce Builder Community record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Builder Communities History
Builder Communities History
builder_communities_historyBuilder Communities History covers field history for Salesforce Builder_Community__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
Builder_Community__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
builder_communities_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Builder Communities History record. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is one nested object per containing Salesforce Builder Community History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
builder_communities_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Builder Communities History rows by the exact Salesforce-returned type value.- Enables: separate Builder Communities History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Builder Communities History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
builder_communities_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Builder Communities History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Builder Communities History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
builder_communities_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is an identifier, not a measured quantity.
Created Date
Created Date
builder_communities_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Builder Communities History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is interpreted at one Salesforce Builder Community History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
builder_communities_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish Builder Communities History rows by the exact Salesforce-returned data type value.- Enables: separate Builder Communities History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is interpreted at one Salesforce Builder Community History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
builder_communities_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is interpreted at one Salesforce Builder Community History record per row.
ID
ID
builder_communities_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same Builder Communities History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Builder Communities History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
builder_communities_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish Builder Communities History rows by the exact Salesforce-returned is deleted value.- Enables: select Builder Communities History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is interpreted at one Salesforce Builder Community History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
builder_communities_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is interpreted at one Salesforce Builder Community History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
builder_communities_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is interpreted at one Salesforce Builder Community History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
builder_communities_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Builder Community History object returned for Builder Communities History; it is an identifier, not a measured quantity.
Campaign Members
Campaign Members
campaign_membersCampaign Members covers Salesforce campaign member records.- Enables: resolve the business relationship represented by each Campaign Members row between its explicitly referenced Salesforce records.
- Scope: Salesforce campaign member records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
campaign_members.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Campaign Members record. - Interpretation: Salesforce reports this value on the Salesforce Campaign Member object returned for Campaign Members; it is one nested object per containing Salesforce Campaign Member object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
campaign_members.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Campaign Members rows by the exact Salesforce-returned type value.- Enables: separate Campaign Members rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Campaign Members; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
campaign_members.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Campaign Members record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Campaign Members; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Campaign ID
Campaign ID
campaign_members.CampaignIdCampaign ID records campaign ID. It is needed to refer to the same campaign across records without relying on display text.- Enables: match
CampaignIdto campaign references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Campaign Member object returned for Campaign Members; it is an identifier, not a measured quantity.
Contact ID
Contact ID
campaign_members.ContactIdContact ID records contact ID. It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Campaign Member object returned for Campaign Members; it is an identifier, not a measured quantity.
ID
ID
campaign_members.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Campaign Members row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Campaign Members and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Campaign Member object returned for Campaign Members; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
campaign_members.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Campaign Members rows by the exact Salesforce-returned is deleted value.- Enables: select Campaign Members rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Campaign Member object returned for Campaign Members; it is interpreted at one Salesforce Campaign Member record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
campaign_members.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Campaign Members records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Campaign Member object returned for Campaign Members; it is interpreted at one Salesforce Campaign Member record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Lead ID
Lead ID
campaign_members.LeadIdLead ID records lead ID. It is needed to refer to the same lead across records without relying on display text.- Enables: match
LeadIdto lead references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Campaign Member object returned for Campaign Members; it is an identifier, not a measured quantity.
Status
Status
campaign_members.StatusStatus records member status. It is needed to distinguish Campaign Members rows by the exact Salesforce-returned status value.- Enables: separate Campaign Members rows by the exact Salesforce-returned
Statuslabel when comparing status. - Interpretation: Salesforce reports this value on the Salesforce Campaign Member object returned for Campaign Members; it is interpreted at one Salesforce Campaign Member record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Case Contact Roles
Case Contact Roles
case_contact_rolesCase Contact Roles covers Salesforce case-contact role junction records.- Enables: resolve the business relationship represented by each Case Contact Roles row between its explicitly referenced Salesforce records.
- Scope: Salesforce case-contact role junction records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
case_contact_roles.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Case Contact Roles record. - Interpretation: Salesforce reports this value on the Salesforce Case Contact Role object returned for Case Contact Roles; it is one nested object per containing Salesforce Case Contact Role object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
case_contact_roles.attributes.typeType records the Salesforce sObject type name. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Case Contact Roles rows with the exact
typeaccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Case Contact Roles; it is interpreted at one Salesforce Record Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
case_contact_roles.attributes.urlURL records relative REST API URL for this record. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate the exact
urlaccess value with the resource, account, or membership represented by the same Case Contact Roles row. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Case Contact Roles; it is link at one Salesforce Record Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; the returned link or template does not establish that the current credential can retrieve its target.
Cases ID
Cases ID
case_contact_roles.CasesIdCases ID records parent Case ID. It is needed to refer to the same cases across records without relying on display text.- Enables: match
CasesIdto cases references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Case Contact Role object returned for Case Contact Roles; it is an identifier, not a measured quantity.
Contact ID
Contact ID
case_contact_roles.ContactIdContact ID records related Contact ID. It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Case Contact Role object returned for Case Contact Roles; it is an identifier, not a measured quantity.
ID
ID
case_contact_roles.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Case Contact Roles row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Case Contact Roles and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Case Contact Role object returned for Case Contact Roles; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
case_contact_roles.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Case Contact Roles rows by the exact Salesforce-returned is deleted value.- Enables: select Case Contact Roles rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Case Contact Role object returned for Case Contact Roles; it is interpreted at one Salesforce Case Contact Role record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
case_contact_roles.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Case Contact Roles records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Case Contact Role object returned for Case Contact Roles; it is interpreted at one Salesforce Case Contact Role record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Role
Role
case_contact_roles.RoleRole records contact role on the case. It is needed to preserve the business or contact responsibility assigned to this relationship.- Enables: filter Case Contact Roles rows by the exact
Rolelabel and attribute the contact’s stated participation to the related Salesforce record. - Interpretation: Salesforce reports this value on the Salesforce Case Contact Role object returned for Case Contact Roles; it is interpreted at one Salesforce Case Contact Role record per row; the value describes business or contact participation, not an application authorization grant.
Cases
Cases
casesCases covers Salesforce case records.- Enables: follow service work from the reported record through its returned assignee, status, priority, and timestamps during triage or fulfillment.
- Scope: Salesforce case records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
cases.AccountIdAccount ID records account ID. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is an identifier, not a measured quantity.
Attributes
Attributes
cases.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Cases record. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is one nested object per containing Salesforce Case object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
cases.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Cases rows by the exact Salesforce-returned type value.- Enables: separate Cases rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Cases; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
cases.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Cases record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Cases; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Case Number
Case Number
cases.CaseNumberCase Number records auto-generated case number. It is needed to refer to the same case number across records without relying on display text.- Enables: match
CaseNumberto case number references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is an identifier, not a measured quantity.
Contact ID
Contact ID
cases.ContactIdContact ID records contact ID. It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is an identifier, not a measured quantity.
ID
ID
cases.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Cases row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Cases and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
cases.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Cases rows by the exact Salesforce-returned is deleted value.- Enables: select Cases rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is interpreted at one Salesforce Case record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
cases.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Cases records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is interpreted at one Salesforce Case record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Owner ID
Owner ID
cases.OwnerIdOwner ID records owner User ID. It is needed to refer to the same owner across records without relying on display text.- Enables: match
OwnerIdto owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is an identifier, not a measured quantity.
Priority
Priority
cases.PriorityPriority records case priority. It is needed to distinguish Cases rows by the exact Salesforce-returned priority value.- Enables: separate Cases rows by the exact Salesforce-returned
Prioritylabel when comparing priority. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is interpreted at one Salesforce Case record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Status
Status
cases.StatusStatus records case status. It is needed to distinguish Cases rows by the exact Salesforce-returned status value.- Enables: separate Cases rows by the exact Salesforce-returned
Statuslabel when comparing status. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is interpreted at one Salesforce Case record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Subject
Subject
cases.SubjectSubject records case subject. It is needed to inspect the exact subject text returned for this Salesforce Case record.- Enables: attribute the subject text in
Subjectto the containing Cases identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Case object returned for Cases; it is interpreted at one Salesforce Case record per row; this is only the subject text included in the Salesforce response for this record.
Channel Program Members
Channel Program Members
channel_program_membersChannel Program Members covers Salesforce channel program member junction records.- Enables: resolve the business relationship represented by each Channel Program Members row between its explicitly referenced Salesforce records.
- Scope: Salesforce channel program member junction records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
channel_program_members.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Channel Program Members record. - Interpretation: Salesforce reports this value on the Salesforce Channel Program Member object returned for Channel Program Members; it is one nested object per containing Salesforce Channel Program Member object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
channel_program_members.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Channel Program Members rows by the exact Salesforce-returned type value.- Enables: separate Channel Program Members rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Channel Program Members; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
channel_program_members.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Channel Program Members record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Channel Program Members; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
channel_program_members.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Channel Program Members row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Channel Program Members and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Channel Program Member object returned for Channel Program Members; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
channel_program_members.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Channel Program Members rows by the exact Salesforce-returned is deleted value.- Enables: select Channel Program Members rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Channel Program Member object returned for Channel Program Members; it is interpreted at one Salesforce Channel Program Member record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
channel_program_members.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Channel Program Members records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Channel Program Member object returned for Channel Program Members; it is interpreted at one Salesforce Channel Program Member record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Level ID
Level ID
channel_program_members.LevelIdLevel ID records channel program level ID. It is needed to refer to the same level across records without relying on display text.- Enables: match
LevelIdto level references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Channel Program Member object returned for Channel Program Members; it is an identifier, not a measured quantity.
Partner ID
Partner ID
channel_program_members.PartnerIdPartner ID records partner Account ID. It is needed to refer to the same partner across records without relying on display text.- Enables: match
PartnerIdto partner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Channel Program Member object returned for Channel Program Members; it is an identifier, not a measured quantity.
Program ID
Program ID
channel_program_members.ProgramIdProgram ID records channel Program ID. It is needed to refer to the same program across records without relying on display text.- Enables: match
ProgramIdto program references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Channel Program Member object returned for Channel Program Members; it is an identifier, not a measured quantity.
Contacts
Contacts
contactsContacts covers Salesforce contacts (people associated with accounts).- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce contacts (people associated with accounts); the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
contacts.AccountIdAccount ID records ID of the account this contact belongs to. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Account Number
Account Number
contacts.AccountNumberAccount Number records account number copied from the related Account record. Populated only when the org has configured this denormalised field on Contact (commonly via a workflow or a custom formula field). It is needed to refer to the same account number across records without relying on display text.- Enables: match
AccountNumberto account number references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Assistant Name
Assistant Name
contacts.AssistantNameAssistant Name records name of the contact’s assistant. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
AssistantNamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row.
Assistant Phone
Assistant Phone
contacts.AssistantPhoneAssistant Phone records phone number of the contact’s assistant. It is needed to measure the Salesforce-reported number of assistant phone at one Salesforce CRM Contact record per row.- Enables: measure and compare the Salesforce-reported number of assistant phone in
AssistantPhoneat one Salesforce CRM Contact record per row. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is a Salesforce-reported count at one Salesforce CRM Contact record per row; the schema uses the
Contact.PhoneNumberscalar.
Attributes
Attributes
contacts.attributesAttributes records Salesforce record metadata including sObject type and resource URL. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
attributeswhile retaining the containing Contacts record as provenance. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is link at one Salesforce CRM Contact record per row; the returned link or template does not establish that the current credential can retrieve its target.
Type
Type
contacts.attributes.typeType records the sObject type name (e.g., Contact). It is needed to distinguish Contacts rows by the exact Salesforce-returned type value.- Enables: separate Contacts rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contacts; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
contacts.attributes.urlURL records relative URL path to the individual record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Contacts record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contacts; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Birthdate
Birthdate
contacts.BirthdateBirthdate records contact’s date of birth. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
Birthdate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Temporal.Datescalar.
Clean Status
Clean Status
contacts.CleanStatusClean Status records data.com clean status indicating data quality. It is needed to distinguish Contacts rows by the exact Salesforce-returned clean status value.- Enables: separate Contacts rows by the exact Salesforce-returned
CleanStatuslabel when comparing clean status. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Created By ID
Created By ID
contacts.CreatedByIdCreated By ID records ID of the user who created this contact record. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Created Date
Created Date
contacts.CreatedDateCreated Date records timestamp when the contact was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Temporal.DateTimescalar.
Department
Department
contacts.DepartmentDepartment records department within the account’s organization. It is needed to compare the returned department for individual Contacts rows and select rows with a specific Department value.- Enables: trace the department relationship returned in
Departmentfrom the Salesforce CRM Contact row to its named Salesforce context. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row.
Description
Description
contacts.DescriptionDescription records free-text description or notes about the contact. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is description text at one Salesforce CRM Contact record per row; this is only the content included in the Salesforce response for this record.
Do Not Call
Do Not Call
contacts.DoNotCallDo Not Call records whether the contact declined phone calls. It is needed to distinguish Contacts rows by the exact Salesforce-returned do not call value.- Enables: select Contacts rows where
DoNotCallis true or false when comparing the condition described by Do Not Call. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Email
contacts.EmailEmail records contact’s primary email address. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
Emailvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Contact.Emailscalar.
Email Bounced Date
Email Bounced Date
contacts.EmailBouncedDateEmail Bounced Date records date when the contact’s email bounced. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
EmailBouncedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Temporal.DateTimescalar.
Email Bounced Reason
Email Bounced Reason
contacts.EmailBouncedReasonEmail Bounced Reason records reason the contact’s email bounced, if applicable. It is needed to distinguish Contacts rows by the exact Salesforce-returned email bounced reason value.- Enables: separate Contacts rows by the exact Salesforce-returned
EmailBouncedReasonlabel when comparing email bounced reason. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Fax
Fax
contacts.FaxFax records contact’s fax number. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
Faxvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row.
First Name
First Name
contacts.FirstNameFirst Name records contact’s first name. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
FirstNamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row.
Has Opted Out Of Email
Has Opted Out Of Email
contacts.HasOptedOutOfEmailHas Opted Out Of Email records whether the contact opted out of email. It is needed to distinguish Contacts rows by the exact Salesforce-returned has opted out of email value.- Enables: select Contacts rows where
HasOptedOutOfEmailis true or false when comparing the condition described by Has Opted Out Of Email. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Has Opted Out Of Fax
Has Opted Out Of Fax
contacts.HasOptedOutOfFaxHas Opted Out Of Fax records whether the contact opted out of fax. It is needed to distinguish Contacts rows by the exact Salesforce-returned has opted out of fax value.- Enables: select Contacts rows where
HasOptedOutOfFaxis true or false when comparing the condition described by Has Opted Out Of Fax. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Home Phone
Home Phone
contacts.HomePhoneHome Phone records contact’s home phone number. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
HomePhonevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Contact.PhoneNumberscalar.
ID
ID
contacts.IdID records unique Salesforce identifier for the contact (18-character ID). It is needed to distinguish repeated deliveries of the same Contacts row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Contacts and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Individual ID
Individual ID
contacts.IndividualIdIndividual ID records ID of the related Individual record for data privacy. It is needed to refer to the same individual across records without relying on display text.- Enables: match
IndividualIdto individual references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Is Deleted
Is Deleted
contacts.IsDeletedIs Deleted records whether the contact has been soft-deleted. It is needed to distinguish Contacts rows by the exact Salesforce-returned is deleted value.- Enables: select Contacts rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Email Bounced
Is Email Bounced
contacts.IsEmailBouncedIs Email Bounced records whether the contact’s email address has bounced. It is needed to distinguish Contacts rows by the exact Salesforce-returned is email bounced value.- Enables: select Contacts rows where
IsEmailBouncedis true or false when comparing the condition described by Is Email Bounced. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Jigsaw
Jigsaw
contacts.JigsawJigsaw records data.com (Jigsaw) key for this contact. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
Jigsawvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row.
Jigsaw Contact ID
Jigsaw Contact ID
contacts.JigsawContactIdJigsaw Contact ID records data.com contact ID. It is needed to refer to the same jigsaw contact across records without relying on display text.- Enables: match
JigsawContactIdto jigsaw contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Languages C
Languages C
contacts.Languages__cLanguages C records custom field: Languages spoken by the contact. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
Languages__cvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Activity Date
Last Activity Date
contacts.LastActivityDateLast Activity Date records date of the most recent activity (task or event) related to this contact. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
LastActivityDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Temporal.Datescalar.
Last CU Request Date
Last CU Request Date
contacts.LastCURequestDateLast CU Request Date records date of the last stay-in-touch request sent to this contact. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
LastCURequestDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Temporal.DateTimescalar.
Last CU Update Date
Last CU Update Date
contacts.LastCUUpdateDateLast CU Update Date records date of the last stay-in-touch update received from this contact. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
LastCUUpdateDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Temporal.DateTimescalar.
Last Modified By ID
Last Modified By ID
contacts.LastModifiedByIdLast Modified By ID records ID of the user who last modified this contact record. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
contacts.LastModifiedDateLast Modified Date records timestamp when the contact was last modified by a user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar.
Last Name
Last Name
contacts.LastNameLast Name records contact’s last name. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
LastNamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row.
Last Referenced Date
Last Referenced Date
contacts.LastReferencedDateLast Referenced Date records timestamp when the current user last referenced (viewed or referenced in a related record) this contact. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
LastReferencedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Temporal.DateTimescalar.
Last Viewed Date
Last Viewed Date
contacts.LastViewedDateLast Viewed Date records timestamp when the current user last viewed this contact. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
LastViewedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Temporal.DateTimescalar.
Lead Source
Lead Source
contacts.LeadSourceLead Source records source from which the contact was acquired (e.g., Web, Phone Inquiry, Partner Referral). It is needed to distinguish Contacts rows by the exact Salesforce-returned lead source value.- Enables: separate Contacts rows by the exact Salesforce-returned
LeadSourcelabel when comparing lead source. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Level C
Level C
contacts.Level__cLevel C records custom field: Contact level or tier classification. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
Level__cvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Mailing Address
Mailing Address
contacts.MailingAddressMailing Address records compound mailing address field. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
MailingAddressfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is one nested object per containing Salesforce CRM Contact object when present; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
City
City
contacts.MailingAddress.cityCity records city name. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
cityfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contacts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Country
Country
contacts.MailingAddress.countryCountry records country name. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
countryfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contacts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Geocode Accuracy
Geocode Accuracy
contacts.MailingAddress.geocodeAccuracyGeocode Accuracy records accuracy level of the geocode. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
geocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contacts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Latitude
Latitude
contacts.MailingAddress.latitudeLatitude records latitude coordinate. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
latitudefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contacts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Longitude
Longitude
contacts.MailingAddress.longitudeLongitude records longitude coordinate. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
longitudefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contacts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Postal Code
Postal Code
contacts.MailingAddress.postalCodePostal Code records postal or ZIP code. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
postalCodefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contacts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
State
State
contacts.MailingAddress.stateState records state or province. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
statefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contacts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Street
Street
contacts.MailingAddress.streetStreet records street address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
streetfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contacts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Mailing City
Mailing City
contacts.MailingCityMailing City records city for the mailing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
MailingCityfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Mailing Country
Mailing Country
contacts.MailingCountryMailing Country records country for the mailing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
MailingCountryfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Mailing Geocode Accuracy
Mailing Geocode Accuracy
contacts.MailingGeocodeAccuracyMailing Geocode Accuracy records accuracy level of the geocode for the mailing address. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
MailingGeocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Mailing Latitude
Mailing Latitude
contacts.MailingLatitudeMailing Latitude records latitude of the mailing address for geolocation. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
MailingLatitudefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Mailing Longitude
Mailing Longitude
contacts.MailingLongitudeMailing Longitude records longitude of the mailing address for geolocation. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
MailingLongitudefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Mailing Postal Code
Mailing Postal Code
contacts.MailingPostalCodeMailing Postal Code records postal or ZIP code for the mailing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
MailingPostalCodefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Mailing State
Mailing State
contacts.MailingStateMailing State records state or province for the mailing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
MailingStatefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Mailing Street
Mailing Street
contacts.MailingStreetMailing Street records street address for the mailing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
MailingStreetfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Master Record ID
Master Record ID
contacts.MasterRecordIdMaster Record ID records if this record was merged, the ID of the master record that replaced it. It is needed to refer to the same master record across records without relying on display text.- Enables: match
MasterRecordIdto master record references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Mobile Phone
Mobile Phone
contacts.MobilePhoneMobile Phone records contact’s mobile phone number. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
MobilePhonevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Contact.PhoneNumberscalar.
Name
Name
contacts.NameName records full name of the contact (concatenation of FirstName and LastName). It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
Namevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Identity.Namescalar.
Other Address
Other Address
contacts.OtherAddressOther Address records compound other address field. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
OtherAddressfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is one nested object per containing Salesforce CRM Contact object when present; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Other City
Other City
contacts.OtherCityOther City records city for the other address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
OtherCityfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Other Country
Other Country
contacts.OtherCountryOther Country records country for the other address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
OtherCountryfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Other Geocode Accuracy
Other Geocode Accuracy
contacts.OtherGeocodeAccuracyOther Geocode Accuracy records accuracy level of the geocode for the other address. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
OtherGeocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Other Latitude
Other Latitude
contacts.OtherLatitudeOther Latitude records latitude of the other address for geolocation. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
OtherLatitudefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Other Longitude
Other Longitude
contacts.OtherLongitudeOther Longitude records longitude of the other address for geolocation. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
OtherLongitudefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Other Phone
Other Phone
contacts.OtherPhoneOther Phone records contact’s alternate phone number. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
OtherPhonevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Contact.PhoneNumberscalar.
Other Postal Code
Other Postal Code
contacts.OtherPostalCodeOther Postal Code records postal or ZIP code for the other address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
OtherPostalCodefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Other State
Other State
contacts.OtherStateOther State records state or province for the other address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
OtherStatefor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Other Street
Other Street
contacts.OtherStreetOther Street records street address for the other (alternate) address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
OtherStreetfor individual Contacts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Owner ID
Owner ID
contacts.OwnerIdOwner ID records ID of the user who owns this contact record. It is needed to refer to the same owner across records without relying on display text.- Enables: match
OwnerIdto owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Phone
Phone
contacts.PhonePhone records contact’s primary phone number. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
Phonevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema uses the
Contact.PhoneNumberscalar.
Photo URL
Photo URL
contacts.PhotoUrlPhoto URL records URL of the contact’s profile photo. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
PhotoUrlwhile retaining the containing Contacts record as provenance. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is link at one Salesforce CRM Contact record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
Reports To ID
Reports To ID
contacts.ReportsToIdReports To ID records ID of the contact this person reports to (for org chart hierarchy). It is needed to refer to the same reports to across records without relying on display text.- Enables: match
ReportsToIdto reports to references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is an identifier, not a measured quantity.
Salutation
Salutation
contacts.SalutationSalutation records honorific or form of address (e.g., Mr., Ms., Dr.). It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Contacts records by
Salutationonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; its unit or granularity is milliseconds; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
System Modstamp
System Modstamp
contacts.SystemModstampSystem Modstamp records system-maintained last modification timestamp, updated by both user and automated changes. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contacts records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Title
Title
contacts.TitleTitle records contact’s job title. It is needed to attribute this Contacts row to the returned person, account, or organization reference.- Enables: attribute the Contacts row to the returned person or account and match the exact
Titlevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row.
Type
Type
contacts.TypeType records contact-type classification (e.g., ‘Customer’, ‘Partner’, ‘Prospect’). Optional in standard Salesforce orgs; populated when the org has enabled the Contact Type picklist. It is needed to distinguish Contacts rows by the exact Salesforce-returned type value.- Enables: separate Contacts rows by the exact Salesforce-returned
Typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce CRM Contact object returned for Contacts; it is interpreted at one Salesforce CRM Contact record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Contract Contact Roles
Contract Contact Roles
contract_contact_rolesContract Contact Roles covers Salesforce contract-contact role junction records.- Enables: resolve the business relationship represented by each Contract Contact Roles row between its explicitly referenced Salesforce records.
- Scope: Salesforce contract-contact role junction records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
contract_contact_roles.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Contract Contact Roles record. - Interpretation: Salesforce reports this value on the Salesforce Contract Contact Role object returned for Contract Contact Roles; it is one nested object per containing Salesforce Contract Contact Role object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
contract_contact_roles.attributes.typeType records the Salesforce sObject type name. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Contract Contact Roles rows with the exact
typeaccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contract Contact Roles; it is interpreted at one Salesforce Record Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
contract_contact_roles.attributes.urlURL records relative REST API URL for this record. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate the exact
urlaccess value with the resource, account, or membership represented by the same Contract Contact Roles row. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contract Contact Roles; it is link at one Salesforce Record Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; the returned link or template does not establish that the current credential can retrieve its target.
Contact ID
Contact ID
contract_contact_roles.ContactIdContact ID records related Contact ID. It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract Contact Role object returned for Contract Contact Roles; it is an identifier, not a measured quantity.
Contract ID
Contract ID
contract_contact_roles.ContractIdContract ID records parent Contract ID. It is needed to refer to the same contract across records without relying on display text.- Enables: match
ContractIdto contract references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract Contact Role object returned for Contract Contact Roles; it is an identifier, not a measured quantity.
ID
ID
contract_contact_roles.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Contract Contact Roles row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Contract Contact Roles and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Contract Contact Role object returned for Contract Contact Roles; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
contract_contact_roles.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Contract Contact Roles rows by the exact Salesforce-returned is deleted value.- Enables: select Contract Contact Roles rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Contract Contact Role object returned for Contract Contact Roles; it is interpreted at one Salesforce Contract Contact Role record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Primary
Is Primary
contract_contact_roles.IsPrimaryIs Primary records whether this is the primary contact. It is needed to distinguish Contract Contact Roles rows by the exact Salesforce-returned is primary value.- Enables: select Contract Contact Roles rows where
IsPrimaryis true or false when comparing the condition described by Is Primary. - Interpretation: Salesforce reports this value on the Salesforce Contract Contact Role object returned for Contract Contact Roles; it is interpreted at one Salesforce Contract Contact Role record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
contract_contact_roles.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contract Contact Roles records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract Contact Role object returned for Contract Contact Roles; it is interpreted at one Salesforce Contract Contact Role record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Role
Role
contract_contact_roles.RoleRole records contact role on the contract. It is needed to preserve the business or contact responsibility assigned to this relationship.- Enables: filter Contract Contact Roles rows by the exact
Rolelabel and attribute the contact’s stated participation to the related Salesforce record. - Interpretation: Salesforce reports this value on the Salesforce Contract Contact Role object returned for Contract Contact Roles; it is interpreted at one Salesforce Contract Contact Role record per row; the value describes business or contact participation, not an application authorization grant.
Contract History
Contract History
contract_historyContract History covers Salesforce contract field change history.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Salesforce contract field change history; the connector reads
/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
contract_history.attributesAttributes records Salesforce record metadata including the sObject type and the record’s REST API URL. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
attributeswhile retaining the containing Contract History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is link at one Salesforce CRM Contract History record per row; the returned link or template does not establish that the current credential can retrieve its target.
Type
Type
contract_history.attributes.typeType records the Salesforce sObject type name (e.g., ‘ContractHistory’). It is needed to distinguish Contract History rows by the exact Salesforce-returned type value.- Enables: separate Contract History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contract History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
contract_history.attributes.urlURL records the relative REST API URL path to retrieve this specific record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Contract History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contract History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Contract ID
Contract ID
contract_history.ContractIdContract ID records the 18-character Salesforce ID of the Contract record that was changed. It is needed to refer to the same contract across records without relying on display text.- Enables: match
ContractIdto contract references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is an identifier, not a measured quantity.
Created By ID
Created By ID
contract_history.CreatedByIdCreated By ID records the 18-character Salesforce ID of the user who made the change to the contract. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is an identifier, not a measured quantity.
Created Date
Created Date
contract_history.CreatedDateCreated Date records the date and time when the field change was made, in ISO 8601 format. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contract History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is interpreted at one Salesforce CRM Contract History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
contract_history.DataTypeData Type records the data type of the field that was changed, if available (e.g., ‘Text’, ‘Date’, ‘Currency’, ‘Picklist’). May be null for certain system-tracked changes. It is needed to distinguish Contract History rows by the exact Salesforce-returned data type value.- Enables: separate Contract History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is interpreted at one Salesforce CRM Contract History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
contract_history.FieldField records the API name of the contract field that was changed (e.g., ‘Status’, ‘StartDate’, ‘EndDate’, ‘OwnerAccepted’). May also contain special tracking values like ‘created’ for record creation events. It is needed to identify which Salesforce field changed in this history event.- Enables: pair
Fieldwith the same history row’s parent identifier, old value, new value, and change time. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is interpreted at one Salesforce CRM Contract History record per row; the value is a Salesforce field name or special tracking label, not the changed value itself.
ID
ID
contract_history.IdID records unique identifier for this contract history record. It is needed to distinguish repeated deliveries of the same Contract History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Contract History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
contract_history.IsDeletedIs Deleted indicates whether this history record has been moved to the Recycle Bin (true) or not (false). It is needed to distinguish Contract History rows by the exact Salesforce-returned is deleted value.- Enables: select Contract History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is interpreted at one Salesforce CRM Contract History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
contract_history.NewValueNew Value records the new value of the changed field after the modification. The actual data type varies depending on the field. Null when the field was cleared. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is interpreted at one Salesforce CRM Contract History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
contract_history.OldValueOld Value records the previous value of the changed field before the modification. The actual data type varies depending on the field. Null for record creation events or when the previous value was empty. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Contract History object returned for Contract History; it is interpreted at one Salesforce CRM Contract History record per row; the schema uses the
Generic.JSONscalar.
Contract Line Items
Contract Line Items
contract_line_itemsContract Line Items covers Salesforce contract line item records.- Enables: trace the returned commercial or delivery record through its parent reference, status, dates, quantities, and monetary fields.
- Scope: Salesforce contract line item records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
contract_line_items.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Contract Line Items record. - Interpretation: Salesforce reports this value on the Salesforce Contract Line Item object returned for Contract Line Items; it is one nested object per containing Salesforce Contract Line Item object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
contract_line_items.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Contract Line Items rows by the exact Salesforce-returned type value.- Enables: separate Contract Line Items rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contract Line Items; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
contract_line_items.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Contract Line Items record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contract Line Items; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
contract_line_items.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Contract Line Items row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Contract Line Items and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Contract Line Item object returned for Contract Line Items; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
contract_line_items.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Contract Line Items rows by the exact Salesforce-returned is deleted value.- Enables: select Contract Line Items rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Contract Line Item object returned for Contract Line Items; it is interpreted at one Salesforce Contract Line Item record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
contract_line_items.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contract Line Items records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract Line Item object returned for Contract Line Items; it is interpreted at one Salesforce Contract Line Item record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Product2 ID
Product2 ID
contract_line_items.Product2IdProduct2 ID records product ID. It is needed to refer to the same product2 across records without relying on display text.- Enables: match
Product2Idto product2 references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract Line Item object returned for Contract Line Items; it is an identifier, not a measured quantity.
Quantity
Quantity
contract_line_items.QuantityQuantity records quantity. It is needed to measure the Salesforce-reported number of quantity at one Salesforce Contract Line Item record per row.- Enables: measure and compare the Salesforce-reported number of quantity in
Quantityat one Salesforce Contract Line Item record per row. - Interpretation: Salesforce reports this value on the Salesforce Contract Line Item object returned for Contract Line Items; it is a Salesforce-reported count at one Salesforce Contract Line Item record per row.
Service Contract ID
Service Contract ID
contract_line_items.ServiceContractIdService Contract ID records parent ServiceContract ID (ContractLineItem has no ContractId field). It is needed to refer to the same service contract across records without relying on display text.- Enables: match
ServiceContractIdto service contract references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract Line Item object returned for Contract Line Items; it is an identifier, not a measured quantity.
Unit Price
Unit Price
contract_line_items.UnitPriceUnit Price records unit price. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
UnitPriceamount for Contract Line Items records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Contract Line Item object returned for Contract Line Items; it is interpreted at one Salesforce Contract Line Item record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Contracts
Contracts
contractsContracts covers Salesforce contracts.- Enables: trace the returned commercial or delivery record through its parent reference, status, dates, quantities, and monetary fields.
- Scope: Salesforce contracts; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
contracts.AccountIdAccount ID records the account this contract is associated with. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Activated By ID
Activated By ID
contracts.ActivatedByIdActivated By ID records ID of the user who activated the contract. It is needed to refer to the same activated by across records without relying on display text.- Enables: match
ActivatedByIdto activated by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Activated Date
Activated Date
contracts.ActivatedDateActivated Date records date and time the contract was activated. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
ActivatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.DateTimescalar.
Attributes
Attributes
contracts.attributesAttributes records Salesforce record metadata including sObject type and resource URL. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
attributeswhile retaining the containing Contracts record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is link at one Salesforce Contract record per row; the returned link or template does not establish that the current credential can retrieve its target.
Type
Type
contracts.attributes.typeType records the sObject type name (e.g., Contract). It is needed to distinguish Contracts rows by the exact Salesforce-returned type value.- Enables: separate Contracts rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contracts; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
contracts.attributes.urlURL records the relative URL path to this specific record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Contracts record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Contracts; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Billing Address
Billing Address
contracts.BillingAddressBilling Address records compound billing address object. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingAddressfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is one nested object per containing Salesforce Contract object when present; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
City
City
contracts.BillingAddress.cityCity records city. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
cityfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contracts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Country
Country
contracts.BillingAddress.countryCountry records country. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
countryfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contracts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Geocode Accuracy
Geocode Accuracy
contracts.BillingAddress.geocodeAccuracyGeocode Accuracy records accuracy level of the geocode. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
geocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contracts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Latitude
Latitude
contracts.BillingAddress.latitudeLatitude records latitude coordinate. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
latitudefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contracts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Longitude
Longitude
contracts.BillingAddress.longitudeLongitude records longitude coordinate. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
longitudefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contracts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Postal Code
Postal Code
contracts.BillingAddress.postalCodePostal Code records postal or ZIP code. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
postalCodefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contracts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
State
State
contracts.BillingAddress.stateState records state or province. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
statefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contracts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Street
Street
contracts.BillingAddress.streetStreet records street address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
streetfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Contracts; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing City
Billing City
contracts.BillingCityBilling City records city for billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingCityfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing Country
Billing Country
contracts.BillingCountryBilling Country records country for billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingCountryfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing Geocode Accuracy
Billing Geocode Accuracy
contracts.BillingGeocodeAccuracyBilling Geocode Accuracy records accuracy level of the geocode for the billing address. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
BillingGeocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Billing Latitude
Billing Latitude
contracts.BillingLatitudeBilling Latitude records latitude of the billing address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
BillingLatitudefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing Longitude
Billing Longitude
contracts.BillingLongitudeBilling Longitude records longitude of the billing address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
BillingLongitudefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Billing Postal Code
Billing Postal Code
contracts.BillingPostalCodeBilling Postal Code records postal or ZIP code for billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingPostalCodefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Billing State
Billing State
contracts.BillingStateBilling State records state or province for billing address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingStatefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Billing Street
Billing Street
contracts.BillingStreetBilling Street records street address for billing. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
BillingStreetfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Company Signed Date
Company Signed Date
contracts.CompanySignedDateCompany Signed Date records date the contract was signed by the company representative. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
CompanySignedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.Datescalar.
Company Signed ID
Company Signed ID
contracts.CompanySignedIdCompany Signed ID records ID of the user who signed the contract on behalf of the company. It is needed to refer to the same company signed across records without relying on display text.- Enables: match
CompanySignedIdto company signed references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Contract Number
Contract Number
contracts.ContractNumberContract Number records auto-generated unique number identifying the contract. It is needed to refer to the same contract number across records without relying on display text.- Enables: match
ContractNumberto contract number references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Contract Term
Contract Term
contracts.ContractTermContract Term records length of the contract in months. It is needed to compare the numeric contract term reported for one Salesforce Contract record without assuming an unstated unit.- Enables: compare the numeric
ContractTermvalue per Salesforce Contract record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row.
Created By ID
Created By ID
contracts.CreatedByIdCreated By ID records ID of the user who created the contract. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Created Date
Created Date
contracts.CreatedDateCreated Date records timestamp when the contract was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.DateTimescalar.
Currency Iso Code
Currency Iso Code
contracts.CurrencyIsoCodeCurrency Iso Code records ISO 4217 currency code of the contract’s monetary amounts. Populated when the Salesforce org has multi-currency enabled; absent otherwise. It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
CurrencyIsoCodewith monetary fields on the same Contracts row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
Customer Signed Date
Customer Signed Date
contracts.CustomerSignedDateCustomer Signed Date records date the contract was signed by the customer. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
CustomerSignedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.Datescalar.
Customer Signed ID
Customer Signed ID
contracts.CustomerSignedIdCustomer Signed ID records ID of the contact who signed the contract on behalf of the customer. It is needed to refer to the same customer signed across records without relying on display text.- Enables: match
CustomerSignedIdto customer signed references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Customer Signed Title
Customer Signed Title
contracts.CustomerSignedTitleCustomer Signed Title records title of the customer signer. It is needed to preserve the business title reported for the customer signer on this contract.- Enables: attribute
CustomerSignedTitleto the same contract signer without treating the title as an authorization role. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is Salesforce business-contact context, not an application permission.
Description
Description
contracts.DescriptionDescription records text description of the contract. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is description text at one Salesforce Contract record per row; this is only the content included in the Salesforce response for this record.
End Date
End Date
contracts.EndDateEnd Date records the date the contract expires. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
EndDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.Datescalar.
ID
ID
contracts.IdID records unique identifier for the contract record. It is needed to distinguish repeated deliveries of the same Contracts row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Contracts and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Company Signed Date Null
Is Company Signed Date Null
contracts.IsCompanySignedDateNullIs Company Signed Date Null indicates whether the company signed date is null. It is needed to distinguish Contracts rows by the exact Salesforce-returned is company signed date null value.- Enables: select Contracts rows where
IsCompanySignedDateNullis true or false when comparing the condition described by Is Company Signed Date Null. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Customer Signed Date Null
Is Customer Signed Date Null
contracts.IsCustomerSignedDateNullIs Customer Signed Date Null indicates whether the customer signed date is null. It is needed to distinguish Contracts rows by the exact Salesforce-returned is customer signed date null value.- Enables: select Contracts rows where
IsCustomerSignedDateNullis true or false when comparing the condition described by Is Customer Signed Date Null. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
contracts.IsDeletedIs Deleted records whether the contract has been soft-deleted. It is needed to distinguish Contracts rows by the exact Salesforce-returned is deleted value.- Enables: select Contracts rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Activity Date
Last Activity Date
contracts.LastActivityDateLast Activity Date records date of the last activity (task or event) on this contract. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
LastActivityDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.Datescalar.
Last Approved Date
Last Approved Date
contracts.LastApprovedDateLast Approved Date records timestamp when the contract was last approved. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
LastApprovedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.DateTimescalar.
Last Modified By ID
Last Modified By ID
contracts.LastModifiedByIdLast Modified By ID records ID of the user who last modified the contract. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
contracts.LastModifiedDateLast Modified Date records timestamp when the contract was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar.
Last Referenced Date
Last Referenced Date
contracts.LastReferencedDateLast Referenced Date records timestamp when the current user last referenced this contract. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
LastReferencedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.DateTimescalar.
Last Viewed Date
Last Viewed Date
contracts.LastViewedDateLast Viewed Date records timestamp when the current user last viewed this contract. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
LastViewedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.DateTimescalar.
Name
Name
contracts.NameName records name or title of the contract. It is needed to compare the returned name for individual Contracts rows and select rows with a specific Name value.- Enables: locate Contracts rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Identity.Namescalar.
Owner Expiration Notice
Owner Expiration Notice
contracts.OwnerExpirationNoticeOwner Expiration Notice records number of days before contract end date to notify the owner. It is needed to attribute this Contracts row to the returned person, account, or organization reference.- Enables: attribute the Contracts row to the returned person or account and match the exact
OwnerExpirationNoticevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; its unit or granularity is days.
Owner ID
Owner ID
contracts.OwnerIdOwner ID records the user who owns this contract. It is needed to refer to the same owner across records without relying on display text.- Enables: match
OwnerIdto owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Pricebook2 ID
Pricebook2 ID
contracts.Pricebook2IdPricebook2 ID records ID of the price book associated with this contract. It is needed to refer to the same pricebook2 across records without relying on display text.- Enables: match
Pricebook2Idto pricebook2 references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity.
Record Type ID
Record Type ID
contracts.RecordTypeIdRecord Type ID records ID of the record type assigned to this contract. It is needed to refer to the same record type across records without relying on display text.- Enables: match
RecordTypeIdto record type references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is an identifier, not a measured quantity; classification values are Salesforce-returned labels rather than a universal taxonomy.
Shipping Address
Shipping Address
contracts.ShippingAddressShipping Address records compound shipping address object. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingAddressfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is one nested object per containing Salesforce Contract object when present; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping City
Shipping City
contracts.ShippingCityShipping City records city for shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingCityfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping Country
Shipping Country
contracts.ShippingCountryShipping Country records country for shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingCountryfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping Geocode Accuracy
Shipping Geocode Accuracy
contracts.ShippingGeocodeAccuracyShipping Geocode Accuracy records accuracy level of the geocode for the shipping address. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
ShippingGeocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Shipping Latitude
Shipping Latitude
contracts.ShippingLatitudeShipping Latitude records latitude of the shipping address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
ShippingLatitudefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping Longitude
Shipping Longitude
contracts.ShippingLongitudeShipping Longitude records longitude of the shipping address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
ShippingLongitudefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Shipping Postal Code
Shipping Postal Code
contracts.ShippingPostalCodeShipping Postal Code records postal or ZIP code for shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingPostalCodefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Shipping State
Shipping State
contracts.ShippingStateShipping State records state or province for shipping address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingStatefor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Shipping Street
Shipping Street
contracts.ShippingStreetShipping Street records street address for shipping. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
ShippingStreetfor individual Contracts rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Special Terms
Special Terms
contracts.SpecialTermsSpecial Terms records special terms or conditions that apply to this contract. It is needed to inspect the exact contract terms text returned for this Salesforce Contract record.- Enables: attribute the contract terms text in
SpecialTermsto the containing Contracts identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; this is only the contract terms text included in the Salesforce response for this record.
Start Date
Start Date
contracts.StartDateStart Date records the date the contract takes effect. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
StartDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema uses the
Temporal.Datescalar.
Status
Status
contracts.StatusStatus records current status of the contract (e.g., Draft, InApproval, Activated). It is needed to distinguish Contracts rows by the exact Salesforce-returned status value.- Enables: separate Contracts rows by the exact Salesforce-returned
Statuslabel when comparing status. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Status Code
Status Code
contracts.StatusCodeStatus Code records picklist code representing the contract status category. It is needed to distinguish Contracts rows by the exact Salesforce-returned status code value.- Enables: separate Contracts rows by the exact Salesforce-returned
StatusCodelabel when comparing status code. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
System Modstamp
System Modstamp
contracts.SystemModstampSystem Modstamp records system timestamp of the last modification, including automated changes. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Contracts records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Contract object returned for Contracts; it is interpreted at one Salesforce Contract record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Custom Tasks
Custom Tasks
custom_tasksCustom Tasks covers Salesforce custom task__c records (distinct from standard Task / tasks tap).- Enables: trace each org-specific Custom Tasks row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
task__crecords (distinct from standard Task / tasks tap); the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
custom_tasks.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Custom Tasks record. - Interpretation: Salesforce reports this value on the Salesforce Custom Task object returned for Custom Tasks; it is one nested object per containing Salesforce Custom Task object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
custom_tasks.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Custom Tasks rows by the exact Salesforce-returned type value.- Enables: separate Custom Tasks rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Custom Tasks; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
custom_tasks.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Custom Tasks record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Custom Tasks; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
custom_tasks.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Custom Tasks records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Custom Task object returned for Custom Tasks; it is interpreted at one Salesforce Custom Task record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
custom_tasks.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Custom Tasks row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Custom Tasks and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Custom Task object returned for Custom Tasks; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
custom_tasks.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Custom Tasks rows by the exact Salesforce-returned is deleted value.- Enables: select Custom Tasks rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Custom Task object returned for Custom Tasks; it is interpreted at one Salesforce Custom Task record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
custom_tasks.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Custom Tasks records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Custom Task object returned for Custom Tasks; it is interpreted at one Salesforce Custom Task record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
custom_tasks.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Custom Tasks rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Custom Task object returned for Custom Tasks; it is interpreted at one Salesforce Custom Task record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
custom_tasks.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Custom Tasks records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Custom Task object returned for Custom Tasks; it is interpreted at one Salesforce Custom Task record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Custom Tasks History
Custom Tasks History
custom_tasks_historyCustom Tasks History covers field history for Salesforce task__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
task__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
custom_tasks_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Custom Tasks History record. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is one nested object per containing Salesforce Custom Task History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
custom_tasks_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Custom Tasks History rows by the exact Salesforce-returned type value.- Enables: separate Custom Tasks History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Custom Tasks History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
custom_tasks_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Custom Tasks History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Custom Tasks History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
custom_tasks_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is an identifier, not a measured quantity.
Created Date
Created Date
custom_tasks_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Custom Tasks History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is interpreted at one Salesforce Custom Task History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
custom_tasks_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish Custom Tasks History rows by the exact Salesforce-returned data type value.- Enables: separate Custom Tasks History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is interpreted at one Salesforce Custom Task History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
custom_tasks_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is interpreted at one Salesforce Custom Task History record per row.
ID
ID
custom_tasks_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same Custom Tasks History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Custom Tasks History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
custom_tasks_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish Custom Tasks History rows by the exact Salesforce-returned is deleted value.- Enables: select Custom Tasks History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is interpreted at one Salesforce Custom Task History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
custom_tasks_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is interpreted at one Salesforce Custom Task History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
custom_tasks_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is interpreted at one Salesforce Custom Task History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
custom_tasks_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Custom Task History object returned for Custom Tasks History; it is an identifier, not a measured quantity.
Event Log Files
Event Log Files
event_log_filesEvent Log Files covers Salesforce event log files (setup audit trail). Requires CSV response parsing.- Enables: locate each returned log-file record by event type and log date, then retain its content link, interval, and size where returned.
- Scope: Salesforce event log files (setup audit trail). Requires CSV response parsing; the connector reads
/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
API Version
API Version
event_log_files.ApiVersionAPI Version records the API version associated with this event log file. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
ApiVersionwith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Attributes
Attributes
event_log_files.attributesAttributes records standard Salesforce sObject attributes metadata including type and URL. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
attributeswith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is one nested object per containing Salesforce CRM Event Log File object when present; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
event_log_files.attributes.typeType records the sObject type name (e.g., EventLogFile). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Event Log Files investigation evidence with the exact
typeresult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Event Log Files; it is interpreted at one S Object Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
event_log_files.attributes.urlURL records the relative URL path to this specific record resource. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
urlwith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Event Log Files; it is link at one S Object Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
event_log_files.CreatedByIdCreated By ID records ID of the user who created this event log file record. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
CreatedByIdwith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is an identifier, not a measured quantity; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Created Date
Created Date
event_log_files.CreatedDateCreated Date records when this event log file record was created in the system. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
CreatedDatewith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; the schema uses the
Temporal.DateTimescalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Event Type
Event Type
event_log_files.EventTypeEvent Type records the type of event captured in this log file (e.g., Login, API, ReportExport). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Event Log Files investigation evidence with the exact
EventTyperesult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
ID
ID
event_log_files.IdID records unique identifier for the event log file record (Salesforce 18-character ID). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
Idwith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Interval
Interval
event_log_files.IntervalInterval records whether the log file covers hourly or daily intervals. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Event Log Files investigation evidence with the exact
Intervalresult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
event_log_files.IsDeletedIs Deleted indicates whether this event log file record has been soft-deleted. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Event Log Files investigation evidence with the exact
IsDeletedresult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is System Admin
Is System Admin
event_log_files.IsSystemAdminIs System Admin indicates whether the events in this log file were performed by a system administrator. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Event Log Files investigation evidence with the exact
IsSystemAdminresult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified By ID
Last Modified By ID
event_log_files.LastModifiedByIdLast Modified By ID records ID of the user who last modified this event log file record. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LastModifiedByIdwith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is an identifier, not a measured quantity; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Last Modified Date
Last Modified Date
event_log_files.LastModifiedDateLast Modified Date records timestamp of the last modification to this event log file record. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LastModifiedDatewith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; the schema uses the
Temporal.DateTimescalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Log Date
Log Date
event_log_files.LogDateLog Date records the date the events in this log file occurred. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LogDatewith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Log File
Log File
event_log_files.LogFileLog File records reference URI to the actual log file content (CSV). Relative path to the binary content of the log file. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LogFilewith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is link at one Salesforce CRM Event Log File record per row; the schema uses the
Network.Uriscalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; the returned link or template does not establish that the current credential can retrieve its target.
Log File Content Type
Log File Content Type
event_log_files.LogFileContentTypeLog File Content Type records MIME type of the log file content, typically text/csv. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Event Log Files investigation evidence with the exact
LogFileContentTyperesult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Log File Field Names
Log File Field Names
event_log_files.LogFileFieldNamesLog File Field Names records comma-separated list of field names present in the CSV log file. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LogFileFieldNameswith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Log File Field Types
Log File Field Types
event_log_files.LogFileFieldTypesLog File Field Types records comma-separated list of field types corresponding to the field names in the CSV log file. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LogFileFieldTypeswith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Log File Length
Log File Length
event_log_files.LogFileLengthLog File Length records size of the log file in bytes. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LogFileLengthwith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; its unit or granularity is bytes; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Sequence
Sequence
event_log_files.SequenceSequence records sequence number for ordering log files of the same type and date. Ensures correct ordering when processing multiple log files. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
Sequencewith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
System Modstamp
System Modstamp
event_log_files.SystemModstampSystem Modstamp records system-managed timestamp of the last modification, including automated processes. Used for incremental sync. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
SystemModstampwith the returned actor, target, action, request, or session identifiers on the same Event Log Files evidence record. - Interpretation: Salesforce reports this value on the Salesforce CRM Event Log File object returned for Event Log Files; it is interpreted at one Salesforce CRM Event Log File record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Event Relations
Event Relations
event_relationsEvent Relations covers Salesforce event relation junction records (Shared Activities).- Enables: resolve the business relationship represented by each Event Relations row between its explicitly referenced Salesforce records.
- Scope: Salesforce event relation junction records (Shared Activities); the connector reads
/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
event_relations.AccountIdAccount ID records related Account ID when applicable. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is an identifier, not a measured quantity.
Attributes
Attributes
event_relations.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Event Relations record. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is one nested object per containing Salesforce Event Relation object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
event_relations.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Event Relations rows by the exact Salesforce-returned type value.- Enables: separate Event Relations rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Event Relations; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
event_relations.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Event Relations record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Event Relations; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Event ID
Event ID
event_relations.EventIdEvent ID records parent Event ID. It is needed to refer to the same event across records without relying on display text.- Enables: match
EventIdto event references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is an identifier, not a measured quantity.
ID
ID
event_relations.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Event Relations row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Event Relations and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
event_relations.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Event Relations rows by the exact Salesforce-returned is deleted value.- Enables: select Event Relations rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is interpreted at one Salesforce Event Relation record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Invitee
Is Invitee
event_relations.IsInviteeIs Invitee records whether the relation is an invitee. It is needed to distinguish Event Relations rows by the exact Salesforce-returned is invitee value.- Enables: select Event Relations rows where
IsInviteeis true or false when comparing the condition described by Is Invitee. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is interpreted at one Salesforce Event Relation record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is What
Is What
event_relations.IsWhatIs What records whether relation is a What (vs Who). It is needed to distinguish Event Relations rows by the exact Salesforce-returned is what value.- Enables: select Event Relations rows where
IsWhatis true or false when comparing the condition described by Is What. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is interpreted at one Salesforce Event Relation record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
event_relations.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Event Relations records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is interpreted at one Salesforce Event Relation record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Relation ID
Relation ID
event_relations.RelationIdRelation ID records related record ID. It is needed to refer to the same relation across records without relying on display text.- Enables: match
RelationIdto relation references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event Relation object returned for Event Relations; it is an identifier, not a measured quantity.
Events
Events
eventsEvents covers Salesforce calendar and activity events.- Enables: reconstruct the returned event sequence and attribute each event to its actor, subject, action, and provider-reported time.
- Scope: Salesforce calendar and activity events; the connector reads
/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Accepted Event Invitee IDs
Accepted Event Invitee IDs
events.AcceptedEventInviteeIdsAccepted Event Invitee IDs records IDs of invitees who accepted the event. It is needed to preserve the nested accepted event invitee i ds relationship or details on the parent Salesforce Event record.- Enables: expand
AcceptedEventInviteeIdsto connect the containing Salesforce Event row to its returned accepted event invitee i ds entries. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is one returned collection per containing Salesforce Event object.
Account ID
Account ID
events.AccountIdAccount ID records ID of the related Account. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Activity Date
Activity Date
events.ActivityDateActivity Date records date of the event (used for all-day events or date-only reference). It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
ActivityDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.Datescalar.
Activity Date Time
Activity Date Time
events.ActivityDateTimeActivity Date Time records combined activity date/time field used for sorting and filtering. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
ActivityDateTime, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Attributes
Attributes
events.attributesAttributes records Salesforce sObject metadata including type and URL. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Events record. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is one nested object per containing Salesforce Event object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
events.attributes.typeType records the sObject type name (e.g., Event). It is needed to distinguish Events rows by the exact Salesforce-returned type value.- Enables: separate Events rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Events; it is interpreted at one S Object Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
events.attributes.urlURL records relative URL path to the individual record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Events record as provenance. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Events; it is link at one S Object Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Client GUID
Client GUID
events.ClientGuidClient GUID records client-generated GUID for request identification of event creation. It is needed to refer to the same client across records without relying on display text.- Enables: match
ClientGuidto client references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Created By ID
Created By ID
events.CreatedByIdCreated By ID records ID of the User who created the event. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Created Date
Created Date
events.CreatedDateCreated Date records timestamp when the event was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.DateTimescalar.
Declined Event Invitee IDs
Declined Event Invitee IDs
events.DeclinedEventInviteeIdsDeclined Event Invitee IDs records IDs of invitees who declined the event. It is needed to preserve the nested declined event invitee i ds relationship or details on the parent Salesforce Event record.- Enables: expand
DeclinedEventInviteeIdsto connect the containing Salesforce Event row to its returned declined event invitee i ds entries. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is one returned collection per containing Salesforce Event object.
Description
Description
events.DescriptionDescription records full text description or notes for the event. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is description text at one Salesforce Event record per row; this is only the content included in the Salesforce response for this record.
Duration In Minutes
Duration In Minutes
events.DurationInMinutesDuration In Minutes records duration of the event in minutes. It is needed to measure the exact duration reported for one Salesforce Event record using the Salesforce duration encoding described by the field.- Enables: measure and compare
DurationInMinutesper Salesforce Event record in minutes. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; its unit or granularity is minutes.
End Date
End Date
events.EndDateEnd Date records end date of the event (for multi-day or all-day events). It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
EndDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.Datescalar.
End Date Time
End Date Time
events.EndDateTimeEnd Date Time records end date and time of the event. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
EndDateTime, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.DateTimescalar.
Event Subtype
Event Subtype
events.EventSubtypeEvent Subtype records subtype of the event such as ‘Event’ or ‘Call’. It is needed to inventory the exact Salesforce-reported configuration or classification represented by this field.- Enables: compare
EventSubtypeamong Events records when reconciling this specific configuration, source, or classification. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the value is a Salesforce-returned or configured label at the Salesforce Event grain rather than a universal taxonomy.
Event Who IDs
Event Who IDs
events.EventWhoIdsEvent Who IDs records list of WhoIds when multi-person event tracking is enabled (relates event to multiple contacts/leads). It is needed to preserve the nested event who i ds relationship or details on the parent Salesforce Event record.- Enables: expand
EventWhoIdsto connect the containing Salesforce Event row to its returned event who i ds entries. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is one returned collection per containing Salesforce Event object.
Group Event Type
Group Event Type
events.GroupEventTypeGroup Event Type records type of group event (e.g., IsChild, IsParent, NonGroup). It is needed to distinguish Events rows by the exact Salesforce-returned group event type value.- Enables: separate Events rows by the exact Salesforce-returned
GroupEventTypelabel when comparing group event type. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
ID
ID
events.IdID records unique Salesforce identifier for the event. It is needed to distinguish repeated deliveries of the same Events row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Events and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is All Day Event
Is All Day Event
events.IsAllDayEventIs All Day Event records whether the event spans the entire day. It is needed to distinguish Events rows by the exact Salesforce-returned is all day event value.- Enables: select Events rows where
IsAllDayEventis true or false when comparing the condition described by Is All Day Event. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Archived
Is Archived
events.IsArchivedIs Archived records whether the event has been archived. It is needed to distinguish Events rows by the exact Salesforce-returned is archived value.- Enables: select Events rows where
IsArchivedis true or false when comparing the condition described by Is Archived. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Child
Is Child
events.IsChildIs Child records whether this event is a child event in a recurring series. It is needed to distinguish Events rows by the exact Salesforce-returned is child value.- Enables: select Events rows where
IsChildis true or false when comparing the condition described by Is Child. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
events.IsDeletedIs Deleted records whether the event has been soft-deleted. It is needed to distinguish Events rows by the exact Salesforce-returned is deleted value.- Enables: select Events rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Group Event
Is Group Event
events.IsGroupEventIs Group Event records whether this event is a group event (multi-person event). It is needed to distinguish Events rows by the exact Salesforce-returned is group event value.- Enables: select Events rows where
IsGroupEventis true or false when comparing the condition described by Is Group Event. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Private
Is Private
events.IsPrivateIs Private records whether the event is marked as private. It is needed to distinguish Events rows by the exact Salesforce-returned is private value.- Enables: select Events rows where
IsPrivateis true or false when comparing the condition described by Is Private. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Recurrence
Is Recurrence
events.IsRecurrenceIs Recurrence records whether this event is a recurring event definition. It is needed to distinguish Events rows by the exact Salesforce-returned is recurrence value.- Enables: select Events rows where
IsRecurrenceis true or false when comparing the condition described by Is Recurrence. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Recurrence2
Is Recurrence2
events.IsRecurrence2Is Recurrence2 records whether this event uses the newer Recurrence2 model. It is needed to distinguish Events rows by the exact Salesforce-returned is recurrence2 value.- Enables: select Events rows where
IsRecurrence2is true or false when comparing the condition described by Is Recurrence2. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Recurrence2 Exception
Is Recurrence2 Exception
events.IsRecurrence2ExceptionIs Recurrence2 Exception records whether this event is an exception in a Recurrence2 series. It is needed to distinguish Events rows by the exact Salesforce-returned is recurrence2 exception value.- Enables: select Events rows where
IsRecurrence2Exceptionis true or false when comparing the condition described by Is Recurrence2 Exception. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Recurrence2 Exclusion
Is Recurrence2 Exclusion
events.IsRecurrence2ExclusionIs Recurrence2 Exclusion records whether this event is an exclusion in a Recurrence2 series. It is needed to distinguish Events rows by the exact Salesforce-returned is recurrence2 exclusion value.- Enables: select Events rows where
IsRecurrence2Exclusionis true or false when comparing the condition described by Is Recurrence2 Exclusion. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Reminder Set
Is Reminder Set
events.IsReminderSetIs Reminder Set records whether a reminder is set for this event. It is needed to distinguish Events rows by the exact Salesforce-returned is reminder set value.- Enables: select Events rows where
IsReminderSetis true or false when comparing the condition described by Is Reminder Set. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified By ID
Last Modified By ID
events.LastModifiedByIdLast Modified By ID records ID of the User who last modified the event. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
events.LastModifiedDateLast Modified Date records timestamp when the event was last modified by a user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar.
Location
Location
events.LocationLocation records location of the event (address, room name, etc.). It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
Locationfor individual Events rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Owner ID
Owner ID
events.OwnerIdOwner ID records ID of the User who owns this event. It is needed to refer to the same owner across records without relying on display text.- Enables: match
OwnerIdto owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Recurrence2 Pattern Start Date
Recurrence2 Pattern Start Date
events.Recurrence2PatternStartDateRecurrence2 Pattern Start Date records start date of the Recurrence2 pattern. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
Recurrence2PatternStartDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.DateTimescalar.
Recurrence2 Pattern Text
Recurrence2 Pattern Text
events.Recurrence2PatternTextRecurrence2 Pattern Text records iCalendar (RFC 2445) RRULE pattern text for Recurrence2 events. It is needed to reconstruct the exact schedule or recurrence rule reported for this Salesforce Event record.- Enables: combine
Recurrence2PatternTextwith the sibling start time, timezone, interval, or recurrence fields to reproduce the reported schedule. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the value describes a Salesforce schedule rule at the containing record grain and does not show whether a future occurrence actually ran.
Recurrence2 Pattern Time Zone
Recurrence2 Pattern Time Zone
events.Recurrence2PatternTimeZoneRecurrence2 Pattern Time Zone records time zone for the Recurrence2 pattern. It is needed to preserve the Salesforce-reported timezone or locale setting for the same record.- Enables: compare the Salesforce-reported timezone or locale setting in
Recurrence2PatternTimeZonefor individual Events rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the value is timezone or locale setting; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Recurrence2 Pattern Version
Recurrence2 Pattern Version
events.Recurrence2PatternVersionRecurrence2 Pattern Version records version of the Recurrence2 pattern. It is needed to compare the exact recurrence2 pattern version configuration returned for this Salesforce Event record.- Enables: compare the exact
Recurrence2PatternVersionconfiguration returned for each Salesforce Event record and select records with the configuration under review. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row.
Recurrence Activity ID
Recurrence Activity ID
events.RecurrenceActivityIdRecurrence Activity ID records ID of the parent recurring activity, if this event is part of a recurrence series. It is needed to refer to the same recurrence activity across records without relying on display text.- Enables: match
RecurrenceActivityIdto recurrence activity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Recurrence Day Of Month
Recurrence Day Of Month
events.RecurrenceDayOfMonthRecurrence Day Of Month records day of the month on which the event recurs. It is needed to compare the numeric recurrence day of month reported for one Salesforce Event record without assuming an unstated unit.- Enables: compare the numeric
RecurrenceDayOfMonthvalue per Salesforce Event record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row.
Recurrence Day Of Week Mask
Recurrence Day Of Week Mask
events.RecurrenceDayOfWeekMaskRecurrence Day Of Week Mask records bitmask representing which days of the week the event recurs on. It is needed to measure the reported recurrence day of week mask for one salesforce event record.- Enables: measure and compare
RecurrenceDayOfWeekMaskper Salesforce Event record in days. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; its unit or granularity is days.
Recurrence End Date Only
Recurrence End Date Only
events.RecurrenceEndDateOnlyRecurrence End Date Only records end date of the recurrence pattern. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
RecurrenceEndDateOnly, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.Datescalar.
Recurrence Instance
Recurrence Instance
events.RecurrenceInstanceRecurrence Instance records instance specifier for monthly/yearly recurrence (e.g., First, Second, Third, Fourth, Last). It is needed to reconstruct the exact schedule or recurrence rule reported for this Salesforce Event record.- Enables: combine
RecurrenceInstancewith the sibling start time, timezone, interval, or recurrence fields to reproduce the reported schedule. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the value describes a Salesforce schedule rule at the containing record grain and does not show whether a future occurrence actually ran.
Recurrence Interval
Recurrence Interval
events.RecurrenceIntervalRecurrence Interval records interval between recurring events (e.g., every 2 weeks). It is needed to compare the numeric recurrence interval reported for one Salesforce Event record without assuming an unstated unit.- Enables: compare the numeric
RecurrenceIntervalvalue per Salesforce Event record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row.
Recurrence Month Of Year
Recurrence Month Of Year
events.RecurrenceMonthOfYearRecurrence Month Of Year records month of the year for yearly recurrence patterns. It is needed to reconstruct the exact schedule or recurrence rule reported for this Salesforce Event record.- Enables: combine
RecurrenceMonthOfYearwith the sibling start time, timezone, interval, or recurrence fields to reproduce the reported schedule. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the value describes a Salesforce schedule rule at the containing record grain and does not show whether a future occurrence actually ran.
Recurrence Start Date Time
Recurrence Start Date Time
events.RecurrenceStartDateTimeRecurrence Start Date Time records start date and time of the recurrence pattern. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
RecurrenceStartDateTime, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.DateTimescalar.
Recurrence Time Zone Sid Key
Recurrence Time Zone Sid Key
events.RecurrenceTimeZoneSidKeyRecurrence Time Zone Sid Key records time zone of the recurrence (IANA-style Salesforce timezone SID key). It is needed to preserve the Salesforce-reported timezone or locale setting for the same record.- Enables: compare the Salesforce-reported timezone or locale setting in
RecurrenceTimeZoneSidKeyfor individual Events rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity; the value is timezone or locale setting; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Recurrence Type
Recurrence Type
events.RecurrenceTypeRecurrence Type records type of recurrence pattern (e.g., RecursDaily, RecursWeekly, RecursMonthly, RecursMonthlyNth, RecursYearly, RecursYearlyNth). It is needed to distinguish Events rows by the exact Salesforce-returned recurrence type value.- Enables: separate Events rows by the exact Salesforce-returned
RecurrenceTypelabel when comparing recurrence type. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Reminder Date Time
Reminder Date Time
events.ReminderDateTimeReminder Date Time records date and time when the reminder fires. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
ReminderDateTime, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.DateTimescalar.
Service Appointment ID
Service Appointment ID
events.ServiceAppointmentIdService Appointment ID records ID of the related Service Appointment (Field Service). It is needed to refer to the same service appointment across records without relying on display text.- Enables: match
ServiceAppointmentIdto service appointment references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Show As
Show As
events.ShowAsShow As records how the event time is displayed on the calendar (e.g., Busy, Free, OutOfOffice). It is needed to inventory the exact Salesforce-reported configuration or classification represented by this field.- Enables: compare
ShowAsamong Events records when reconciling this specific configuration, source, or classification. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the value is a Salesforce-returned or configured label at the Salesforce Event grain rather than a universal taxonomy.
Start Date Time
Start Date Time
events.StartDateTimeStart Date Time records start date and time of the event. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
StartDateTime, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema uses the
Temporal.DateTimescalar.
Subject
Subject
events.SubjectSubject records brief description or title of the event. It is needed to inspect the exact subject text returned for this Salesforce Event record.- Enables: attribute the subject text in
Subjectto the containing Events identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; this is only the subject text included in the Salesforce response for this record.
System Modstamp
System Modstamp
events.SystemModstampSystem Modstamp records system-maintained last modification timestamp, updated by both user and system processes. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Events records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Type
Type
events.TypeType records type of event (e.g., Meeting, Call, Email, Other). Picklist value. It is needed to distinguish Events rows by the exact Salesforce-returned type value.- Enables: separate Events rows by the exact Salesforce-returned
Typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is interpreted at one Salesforce Event record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Undecided Event Invitee IDs
Undecided Event Invitee IDs
events.UndecidedEventInviteeIdsUndecided Event Invitee IDs records IDs of invitees who have not yet responded. It is needed to preserve the nested undecided event invitee i ds relationship or details on the parent Salesforce Event record.- Enables: expand
UndecidedEventInviteeIdsto connect the containing Salesforce Event row to its returned undecided event invitee i ds entries. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is one returned collection per containing Salesforce Event object.
What ID
What ID
events.WhatIdWhat ID records ID of the related record such as Account, Opportunity, or custom object (the ‘Related To’ relation). It is needed to refer to the same what across records without relying on display text.- Enables: match
WhatIdto what references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Who ID
Who ID
events.WhoIdWho ID records ID of the related Contact or Lead (the ‘Name’ relation). It is needed to refer to the same who across records without relying on display text.- Enables: match
WhoIdto who references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Event object returned for Events; it is an identifier, not a measured quantity.
Leads
Leads
leadsLeads covers Salesforce lead records.- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce lead records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
leads.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Leads record. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is one nested object per containing Salesforce Lead object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
leads.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Leads rows by the exact Salesforce-returned type value.- Enables: separate Leads rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Leads; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
leads.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Leads record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Leads; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Company
Company
leads.CompanyCompany records lead company name. It is needed to compare the returned company for individual Leads rows and select rows with a specific Company value.- Enables: trace the company relationship returned in
Companyfrom the Salesforce Lead row to its named Salesforce context. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is interpreted at one Salesforce Lead record per row.
Converted Account ID
Converted Account ID
leads.ConvertedAccountIdConverted Account ID records account ID after conversion. It is needed to refer to the same converted account across records without relying on display text.- Enables: match
ConvertedAccountIdto converted account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is an identifier, not a measured quantity.
Converted Contact ID
Converted Contact ID
leads.ConvertedContactIdConverted Contact ID records contact ID after conversion. It is needed to refer to the same converted contact across records without relying on display text.- Enables: match
ConvertedContactIdto converted contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is an identifier, not a measured quantity.
Converted Opportunity ID
Converted Opportunity ID
leads.ConvertedOpportunityIdConverted Opportunity ID records opportunity ID after conversion. It is needed to refer to the same converted opportunity across records without relying on display text.- Enables: match
ConvertedOpportunityIdto converted opportunity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is an identifier, not a measured quantity.
Email
leads.EmailEmail records lead email address. It is needed to attribute this Leads row to the returned person, account, or organization reference.- Enables: attribute the Leads row to the returned person or account and match the exact
Emailvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is interpreted at one Salesforce Lead record per row.
ID
ID
leads.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Leads row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Leads and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Converted
Is Converted
leads.IsConvertedIs Converted records whether the lead has been converted. It is needed to distinguish Leads rows by the exact Salesforce-returned is converted value.- Enables: select Leads rows where
IsConvertedis true or false when comparing the condition described by Is Converted. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is interpreted at one Salesforce Lead record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
leads.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Leads rows by the exact Salesforce-returned is deleted value.- Enables: select Leads rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is interpreted at one Salesforce Lead record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
leads.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Leads records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is interpreted at one Salesforce Lead record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Status
Status
leads.StatusStatus records lead status. It is needed to distinguish Leads rows by the exact Salesforce-returned status value.- Enables: separate Leads rows by the exact Salesforce-returned
Statuslabel when comparing status. - Interpretation: Salesforce reports this value on the Salesforce Lead object returned for Leads; it is interpreted at one Salesforce Lead record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Login History
Login History
login_historyLogin History covers Salesforce user login history.- Enables: reconstruct returned login attempts by user, application, source context, status, and provider-reported time.
- Scope: Salesforce user login history; the connector reads
/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. This stream has no deletion signal, so a missing row does not establish that the Salesforce record was deleted.
API Type
API Type
login_history.ApiTypeAPI Type records the type of API used for the login (e.g., ‘Browser’, ‘SOAP Enterprise’, ‘REST API’, ‘Bulk API’). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Login History investigation evidence with the exact
ApiTyperesult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
API Version
API Version
login_history.ApiVersionAPI Version records the API version used for the login request. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
ApiVersionwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Application
Application
login_history.ApplicationApplication records the application or connected app used to log in. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
Applicationwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Attributes
Attributes
login_history.attributesAttributes records Salesforce sObject metadata attributes including type and URL. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
attributeswith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is one nested object per containing Salesforce Login History object when present; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
login_history.attributes.typeType records the sObject type name (e.g., ‘LoginHistory’). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Login History investigation evidence with the exact
typeresult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Login History; it is interpreted at one S Object Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
login_history.attributes.urlURL records the relative URL path to access this specific record via the REST API. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
urlwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Login History; it is link at one S Object Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; the returned link or template does not establish that the current credential can retrieve its target.
Authentication Service ID
Authentication Service ID
login_history.AuthenticationServiceIdAuthentication Service ID records ID of the authentication service (e.g., SAML SSO configuration) used for this login. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
AuthenticationServiceIdwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is an identifier, not a measured quantity; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Auth Method Reference
Auth Method Reference
login_history.AuthMethodReferenceAuth Method Reference records the authentication method reference value from the identity provider, indicating how the user authenticated. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
AuthMethodReferencewith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Browser
Browser
login_history.BrowserBrowser records browser used for the login attempt (e.g., ‘Chrome 120’, ‘Firefox 121’, ‘Unknown’). It is needed to preserve the Salesforce-reported client device or software context for the same record.- Enables: correlate
Browserwith the actor, request, or session on the same Salesforce event without treating it as proof of physical presence. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; the value is client device or software context; this Salesforce-reported or configured context does not establish residency or verified physical presence; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Cipher Suite
Cipher Suite
login_history.CipherSuiteCipher Suite records the TLS cipher suite used for the login connection. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
CipherSuitewith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Client Version
Client Version
login_history.ClientVersionClient Version records version of the client application used for the login. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
ClientVersionwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Country Iso
Country Iso
login_history.CountryIsoCountry Iso records ISO 3166-1 alpha-2 country code derived from the source IP geolocation. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: correlate
CountryIsowith the actor, request, or session on the same Salesforce event without treating it as proof of physical presence. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Forwarded For IP
Forwarded For IP
login_history.ForwardedForIpForwarded For IP records the IP address from the X-Forwarded-For header, if present, indicating the original client IP behind a proxy. It is needed to preserve the Salesforce-reported network address context for the same record.- Enables: correlate
ForwardedForIpwith the actor, request, or session on the same Salesforce event without treating it as proof of physical presence. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; the value is network address context; this Salesforce-reported or configured context does not establish residency or verified physical presence; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
ID
ID
login_history.IdID records unique identifier for the login history record (Salesforce 18-character ID). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
Idwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Login Geo ID
Login Geo ID
login_history.LoginGeoIdLogin Geo ID records reference to the LoginGeo record containing geographic location data for this login. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LoginGeoIdwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is an identifier, not a measured quantity; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Login History ID
Login History ID
login_history.LoginHistoryIdLogin History ID records self-referencing ID field for the login history record. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LoginHistoryIdwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is an identifier, not a measured quantity; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Login Sub Type
Login Sub Type
login_history.LoginSubTypeLogin Sub Type records sub-type of the login providing additional classification detail. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Login History investigation evidence with the exact
LoginSubTyperesult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Login Time
Login Time
login_history.LoginTimeLogin Time records timestamp when the login attempt occurred. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LoginTimewith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Login Type
Login Type
login_history.LoginTypeLogin Type records the type of login used (e.g., Application, Remote Access 2.0, SAML Sfdc Initiated SSO). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Login History investigation evidence with the exact
LoginTyperesult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Login URL
Login URL
login_history.LoginUrlLogin URL records the URL used to initiate the login attempt. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
LoginUrlwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is link at one Salesforce Login History record per row; the schema uses the
Network.Urlscalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; the returned link or template does not establish that the current credential can retrieve its target.
Network ID
Network ID
login_history.NetworkIdNetwork ID records ID of the Salesforce network (community/experience site) associated with the login, if applicable. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
NetworkIdwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is an identifier, not a measured quantity; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Options Is Get
Options Is Get
login_history.OptionsIsGetOptions Is Get indicates whether the login request was an HTTP GET request. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Login History investigation evidence with the exact
OptionsIsGetresult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Options Is Post
Options Is Post
login_history.OptionsIsPostOptions Is Post indicates whether the login request was an HTTP POST request. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Login History investigation evidence with the exact
OptionsIsPostresult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Platform
Platform
login_history.PlatformPlatform records operating system platform used for the login (e.g., ‘Windows 10’, ‘Mac OSX’, ‘Linux’). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
Platformwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Source IP
Source IP
login_history.SourceIpSource IP records IP address from which the login attempt originated. It is needed to preserve the Salesforce-reported network address context for the same record.- Enables: correlate
SourceIpwith the actor, request, or session on the same Salesforce event without treating it as proof of physical presence. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; the schema uses the
Network.IpAddressscalar; the value is network address context; this Salesforce-reported or configured context does not establish residency or verified physical presence; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Status
Status
login_history.StatusStatus records whether the login attempt succeeded (‘Success’) or the failure reason (e.g., ‘Failed: Invalid Password’, ‘Failed: Computer Activation Locked’). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Login History investigation evidence with the exact
Statusresult, permission, or Salesforce classification being examined. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
Tls Protocol
Tls Protocol
login_history.TlsProtocolTls Protocol records the TLS protocol version used for the login connection (e.g., TLS 1.2, TLS 1.3). It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
TlsProtocolwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is interpreted at one Salesforce Login History record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
User ID
User ID
login_history.UserIdUser ID records the ID of the user who attempted to log in. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate
UserIdwith the returned actor, target, action, request, or session identifiers on the same Login History evidence record. - Interpretation: Salesforce reports this value on the Salesforce Login History object returned for Login History; it is an identifier, not a measured quantity; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Lots
Lots
lotsLots covers Salesforce custom Lot__c records.- Enables: trace each org-specific Lots row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
Lot__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
lots.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Lots record. - Interpretation: Salesforce reports this value on the Salesforce Lot object returned for Lots; it is one nested object per containing Salesforce Lot object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
lots.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Lots rows by the exact Salesforce-returned type value.- Enables: separate Lots rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Lots; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
lots.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Lots record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Lots; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
lots.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Lots records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Lot object returned for Lots; it is interpreted at one Salesforce Lot record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
lots.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Lots row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Lots and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Lot object returned for Lots; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
lots.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Lots rows by the exact Salesforce-returned is deleted value.- Enables: select Lots rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Lot object returned for Lots; it is interpreted at one Salesforce Lot record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
lots.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Lots records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Lot object returned for Lots; it is interpreted at one Salesforce Lot record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
lots.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Lots rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Lot object returned for Lots; it is interpreted at one Salesforce Lot record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
lots.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Lots records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Lot object returned for Lots; it is interpreted at one Salesforce Lot record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Lots History
Lots History
lots_historyLots History covers field history for Salesforce Lot__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
Lot__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
lots_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Lots History record. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is one nested object per containing Salesforce Lot History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
lots_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Lots History rows by the exact Salesforce-returned type value.- Enables: separate Lots History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Lots History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
lots_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Lots History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Lots History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
lots_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is an identifier, not a measured quantity.
Created Date
Created Date
lots_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Lots History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is interpreted at one Salesforce Lot History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
lots_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish Lots History rows by the exact Salesforce-returned data type value.- Enables: separate Lots History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is interpreted at one Salesforce Lot History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
lots_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is interpreted at one Salesforce Lot History record per row.
ID
ID
lots_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same Lots History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Lots History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
lots_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish Lots History rows by the exact Salesforce-returned is deleted value.- Enables: select Lots History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is interpreted at one Salesforce Lot History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
lots_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is interpreted at one Salesforce Lot History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
lots_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is interpreted at one Salesforce Lot History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
lots_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Lot History object returned for Lots History; it is an identifier, not a measured quantity.
Opportunities
Opportunities
opportunitiesOpportunities covers Salesforce opportunities (sales deals).- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce opportunities (sales deals); the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
opportunities.AccountIdAccount ID records ID of the account associated with this opportunity. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Amount
Amount
opportunities.AmountAmount records total monetary value of the opportunity. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
Amountamount for Opportunities records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Attributes
Attributes
opportunities.attributesAttributes records Salesforce sObject metadata including type and URL. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunities record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is one nested object per containing Salesforce Opportunity object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
opportunities.attributes.typeType records the sObject type name (e.g., Opportunity). It is needed to distinguish Opportunities rows by the exact Salesforce-returned type value.- Enables: separate Opportunities rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Opportunities; it is interpreted at one S Object Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunities.attributes.urlURL records relative URL path to the individual record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Opportunities record as provenance. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Opportunities; it is link at one S Object Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Campaign ID
Campaign ID
opportunities.CampaignIdCampaign ID records primary campaign associated with this opportunity. It is needed to refer to the same campaign across records without relying on display text.- Enables: match
CampaignIdto campaign references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Close Date
Close Date
opportunities.CloseDateClose Date records expected close date of the opportunity. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
CloseDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the schema uses the
Temporal.Datescalar.
Contact ID
Contact ID
opportunities.ContactIdContact ID records ID of the primary contact associated with this opportunity. It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Contract ID
Contract ID
opportunities.ContractIdContract ID records ID of the contract associated with this opportunity. It is needed to refer to the same contract across records without relying on display text.- Enables: match
ContractIdto contract references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Created By ID
Created By ID
opportunities.CreatedByIdCreated By ID records ID of the user who created the opportunity. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Created Date
Created Date
opportunities.CreatedDateCreated Date records timestamp when the opportunity was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the schema uses the
Temporal.DateTimescalar.
Currency Iso Code
Currency Iso Code
opportunities.CurrencyIsoCodeCurrency Iso Code records ISO 4217 currency code for the opportunity when multi-currency is enabled. It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
CurrencyIsoCodewith monetary fields on the same Opportunities row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
Current Generators C
Current Generators C
opportunities.CurrentGenerators__cCurrent Generators C records custom field for current generators or competing products. It is needed to preserve the configured Salesforce org’s specific current generators c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Opportunities rows by the exact custom
CurrentGenerators__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Delivery Installation Status C
Delivery Installation Status C
opportunities.DeliveryInstallationStatus__cDelivery Installation Status C records custom field for delivery or installation status. It is needed to distinguish Opportunities rows by the exact Salesforce-returned delivery installation status c value.- Enables: separate Opportunities rows by the exact Salesforce-returned
DeliveryInstallationStatus__clabel when comparing delivery installation status c. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Description
Description
opportunities.DescriptionDescription records detailed description of the opportunity. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is description text at one Salesforce Opportunity record per row; this is only the content included in the Salesforce response for this record.
Expected Revenue
Expected Revenue
opportunities.ExpectedRevenueExpected Revenue records calculated expected revenue (Amount × Probability). It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
ExpectedRevenueamount for Opportunities records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Fiscal
Fiscal
opportunities.FiscalFiscal records combined fiscal period string representation. It is needed to reconstruct the exact schedule or recurrence rule reported for this Salesforce Opportunity record.- Enables: combine
Fiscalwith the sibling start time, timezone, interval, or recurrence fields to reproduce the reported schedule. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the value describes a Salesforce schedule rule at the containing record grain and does not show whether a future occurrence actually ran.
Fiscal Quarter
Fiscal Quarter
opportunities.FiscalQuarterFiscal Quarter records fiscal quarter in which the opportunity close date falls (1-4). It is needed to compare the numeric fiscal quarter reported for one Salesforce Opportunity record without assuming an unstated unit.- Enables: compare the numeric
FiscalQuartervalue per Salesforce Opportunity record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row.
Fiscal Year
Fiscal Year
opportunities.FiscalYearFiscal Year records fiscal year in which the opportunity close date falls. It is needed to compare the numeric fiscal year reported for one Salesforce Opportunity record without assuming an unstated unit.- Enables: compare the numeric
FiscalYearvalue per Salesforce Opportunity record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row.
Forecast Category
Forecast Category
opportunities.ForecastCategoryForecast Category records forecast category for the opportunity (e.g., Pipeline, Best Case, Commit, Closed). It is needed to distinguish Opportunities rows by the exact Salesforce-returned forecast category value.- Enables: separate Opportunities rows by the exact Salesforce-returned
ForecastCategorylabel when comparing forecast category. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Forecast Category Name
Forecast Category Name
opportunities.ForecastCategoryNameForecast Category Name records display name of the forecast category. It is needed to distinguish Opportunities rows by the exact Salesforce-returned forecast category name value.- Enables: separate Opportunities rows by the exact Salesforce-returned
ForecastCategoryNamelabel when comparing forecast category name. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Has Open Activity
Has Open Activity
opportunities.HasOpenActivityHas Open Activity records whether the opportunity has any open activities. It is needed to distinguish Opportunities rows by the exact Salesforce-returned has open activity value.- Enables: select Opportunities rows where
HasOpenActivityis true or false when comparing the condition described by Has Open Activity. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Has Opportunity Line Item
Has Opportunity Line Item
opportunities.HasOpportunityLineItemHas Opportunity Line Item records whether the opportunity has associated line items (products). It is needed to distinguish Opportunities rows by the exact Salesforce-returned has opportunity line item value.- Enables: select Opportunities rows where
HasOpportunityLineItemis true or false when comparing the condition described by Has Opportunity Line Item. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Has Overdue Task
Has Overdue Task
opportunities.HasOverdueTaskHas Overdue Task records whether the opportunity has any overdue tasks. It is needed to distinguish Opportunities rows by the exact Salesforce-returned has overdue task value.- Enables: select Opportunities rows where
HasOverdueTaskis true or false when comparing the condition described by Has Overdue Task. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
ID
ID
opportunities.IdID records unique Salesforce identifier for the opportunity. It is needed to distinguish repeated deliveries of the same Opportunities row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunities and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Iq Score
Iq Score
opportunities.IqScoreIq Score records einstein Opportunity Score indicating likelihood of winning. It is needed to compare the numeric iq score reported for one Salesforce Opportunity record without assuming an unstated unit.- Enables: compare the numeric
IqScorevalue per Salesforce Opportunity record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row.
Is Closed
Is Closed
opportunities.IsClosedIs Closed records whether the opportunity is closed (won or lost). It is needed to distinguish Opportunities rows by the exact Salesforce-returned is closed value.- Enables: select Opportunities rows where
IsClosedis true or false when comparing the condition described by Is Closed. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
opportunities.IsDeletedIs Deleted records whether the opportunity has been soft-deleted. It is needed to distinguish Opportunities rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunities rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Private
Is Private
opportunities.IsPrivateIs Private records whether the opportunity is marked as private. It is needed to distinguish Opportunities rows by the exact Salesforce-returned is private value.- Enables: select Opportunities rows where
IsPrivateis true or false when comparing the condition described by Is Private. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Won
Is Won
opportunities.IsWonIs Won records whether the opportunity was won. It is needed to distinguish Opportunities rows by the exact Salesforce-returned is won value.- Enables: select Opportunities rows where
IsWonis true or false when comparing the condition described by Is Won. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Activity Date
Last Activity Date
opportunities.LastActivityDateLast Activity Date records date of the last activity (task or event) associated with this opportunity. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
LastActivityDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the schema uses the
Temporal.Datescalar.
Last Amount Changed History ID
Last Amount Changed History ID
opportunities.LastAmountChangedHistoryIdLast Amount Changed History ID records ID of the last opportunity history entry where the amount changed. It is needed to refer to the same last amount changed history across records without relying on display text.- Enables: match
LastAmountChangedHistoryIdto last amount changed history references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Last Close Date Changed History ID
Last Close Date Changed History ID
opportunities.LastCloseDateChangedHistoryIdLast Close Date Changed History ID records ID of the last opportunity history entry where the close date changed. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
LastCloseDateChangedHistoryId, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Last Modified By ID
Last Modified By ID
opportunities.LastModifiedByIdLast Modified By ID records ID of the user who last modified the opportunity. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
opportunities.LastModifiedDateLast Modified Date records timestamp when the opportunity was last modified by a user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar.
Last Referenced Date
Last Referenced Date
opportunities.LastReferencedDateLast Referenced Date records timestamp when the opportunity was last referenced by the current user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
LastReferencedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the schema uses the
Temporal.DateTimescalar.
Last Stage Change Date
Last Stage Change Date
opportunities.LastStageChangeDateLast Stage Change Date records timestamp when the stage was last changed. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
LastStageChangeDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the schema uses the
Temporal.DateTimescalar; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Viewed Date
Last Viewed Date
opportunities.LastViewedDateLast Viewed Date records timestamp when the opportunity was last viewed by the current user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
LastViewedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the schema uses the
Temporal.DateTimescalar.
Lead Source
Lead Source
opportunities.LeadSourceLead Source records source from which the opportunity originated. It is needed to distinguish Opportunities rows by the exact Salesforce-returned lead source value.- Enables: separate Opportunities rows by the exact Salesforce-returned
LeadSourcelabel when comparing lead source. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Main Competitors C
Main Competitors C
opportunities.MainCompetitors__cMain Competitors C records custom field for main competitors on this deal. It is needed to preserve the configured Salesforce org’s specific main competitors c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Opportunities rows by the exact custom
MainCompetitors__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
opportunities.NameName records name of the opportunity. It is needed to compare the returned name for individual Opportunities rows and select rows with a specific Name value.- Enables: locate Opportunities rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the schema uses the
Identity.Namescalar.
Next Step
Next Step
opportunities.NextStepNext Step records description of the next step in closing the opportunity. It is needed to inspect the exact next-step description returned for this Salesforce Opportunity record.- Enables: attribute the next-step description in
NextStepto the containing Opportunities identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; this is only the next-step description included in the Salesforce response for this record.
Order Number C
Order Number C
opportunities.OrderNumber__cOrder Number C records custom field for associated order number. It is needed to preserve the configured Salesforce org’s specific order number c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Opportunities rows by the exact custom
OrderNumber__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Owner ID
Owner ID
opportunities.OwnerIdOwner ID records user ID of the opportunity owner. It is needed to refer to the same owner across records without relying on display text.- Enables: match
OwnerIdto owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Pricebook2 ID
Pricebook2 ID
opportunities.Pricebook2IdPricebook2 ID records ID of the price book associated with this opportunity. It is needed to refer to the same pricebook2 across records without relying on display text.- Enables: match
Pricebook2Idto pricebook2 references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
Probability
Probability
opportunities.ProbabilityProbability records likelihood of closing the opportunity as a percentage (0-100). It is needed to measure the reported probability for one salesforce opportunity record.- Enables: measure and compare
Probabilityper Salesforce Opportunity record in percent. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; its unit or granularity is percent.
Record Type ID
Record Type ID
opportunities.RecordTypeIdRecord Type ID records ID of the record type assigned to this opportunity. It is needed to refer to the same record type across records without relying on display text.- Enables: match
RecordTypeIdto record type references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity; classification values are Salesforce-returned labels rather than a universal taxonomy.
Stage Name
Stage Name
opportunities.StageNameStage Name records current stage of the opportunity in the sales process. It is needed to distinguish Opportunities rows by the exact Salesforce-returned stage name value.- Enables: separate Opportunities rows by the exact Salesforce-returned
StageNamelabel when comparing stage name. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Synced Quote ID
Synced Quote ID
opportunities.SyncedQuoteIdSynced Quote ID records ID of the quote currently synced to the opportunity. It is needed to refer to the same synced quote across records without relying on display text.- Enables: match
SyncedQuoteIdto synced quote references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is an identifier, not a measured quantity.
System Modstamp
System Modstamp
opportunities.SystemModstampSystem Modstamp records system-maintained last modification timestamp, updated by both user and automated changes. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunities records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Total Opportunity Quantity
Total Opportunity Quantity
opportunities.TotalOpportunityQuantityTotal Opportunity Quantity records total quantity of all products in this opportunity. It is needed to compare the numeric total opportunity quantity reported for one Salesforce Opportunity record without assuming an unstated unit.- Enables: compare the numeric
TotalOpportunityQuantityvalue per Salesforce Opportunity record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row.
Tracking Number C
Tracking Number C
opportunities.TrackingNumber__cTracking Number C records custom field for shipment tracking number. It is needed to preserve the configured Salesforce org’s specific tracking number c attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Opportunities rows by the exact custom
TrackingNumber__cvalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
opportunities.TypeType records type of opportunity such as New Business or Existing Business. It is needed to distinguish Opportunities rows by the exact Salesforce-returned type value.- Enables: separate Opportunities rows by the exact Salesforce-returned
Typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Opportunity object returned for Opportunities; it is interpreted at one Salesforce Opportunity record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Opportunity Competitors
Opportunity Competitors
opportunity_competitorsOpportunity Competitors covers Salesforce opportunity competitor records.- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce opportunity competitor records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
opportunity_competitors.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunity Competitors record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Competitor object returned for Opportunity Competitors; it is one nested object per containing Salesforce Opportunity Competitor object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
opportunity_competitors.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Opportunity Competitors rows by the exact Salesforce-returned type value.- Enables: separate Opportunity Competitors rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Competitors; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunity_competitors.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Opportunity Competitors record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Competitors; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Competitor Name
Competitor Name
opportunity_competitors.CompetitorNameCompetitor Name records competitor name. It is needed to compare the returned competitor name for individual Opportunity Competitors rows and select rows with a specific CompetitorName value.- Enables: locate Opportunity Competitors rows whose returned competitor name exactly matches
CompetitorNameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Competitor object returned for Opportunity Competitors; it is interpreted at one Salesforce Opportunity Competitor record per row.
ID
ID
opportunity_competitors.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Opportunity Competitors row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunity Competitors and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Competitor object returned for Opportunity Competitors; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
opportunity_competitors.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Opportunity Competitors rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunity Competitors rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Competitor object returned for Opportunity Competitors; it is interpreted at one Salesforce Opportunity Competitor record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
opportunity_competitors.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Competitors records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Competitor object returned for Opportunity Competitors; it is interpreted at one Salesforce Opportunity Competitor record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Opportunity ID
Opportunity ID
opportunity_competitors.OpportunityIdOpportunity ID records opportunity ID. It is needed to refer to the same opportunity across records without relying on display text.- Enables: match
OpportunityIdto opportunity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Competitor object returned for Opportunity Competitors; it is an identifier, not a measured quantity.
Strengths
Strengths
opportunity_competitors.StrengthsStrengths records competitor strengths. It is needed to inspect the exact competitor-strength text returned for this Salesforce Opportunity Competitor record.- Enables: attribute the competitor-strength text in
Strengthsto the containing Opportunity Competitors identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Competitor object returned for Opportunity Competitors; it is interpreted at one Salesforce Opportunity Competitor record per row; this is only the competitor-strength text included in the Salesforce response for this record.
Weaknesses
Weaknesses
opportunity_competitors.WeaknessesWeaknesses records competitor weaknesses. It is needed to inspect the exact competitor-weakness text returned for this Salesforce Opportunity Competitor record.- Enables: attribute the competitor-weakness text in
Weaknessesto the containing Opportunity Competitors identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Competitor object returned for Opportunity Competitors; it is interpreted at one Salesforce Opportunity Competitor record per row; this is only the competitor-weakness text included in the Salesforce response for this record.
Opportunity Contact Roles
Opportunity Contact Roles
opportunity_contact_rolesOpportunity Contact Roles covers Salesforce opportunity-contact role junction records.- Enables: resolve the business relationship represented by each Opportunity Contact Roles row between its explicitly referenced Salesforce records.
- Scope: Salesforce opportunity-contact role junction records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
opportunity_contact_roles.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunity Contact Roles record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Contact Role object returned for Opportunity Contact Roles; it is one nested object per containing Salesforce Opportunity Contact Role object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
opportunity_contact_roles.attributes.typeType records the Salesforce sObject type name. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Opportunity Contact Roles rows with the exact
typeaccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Contact Roles; it is interpreted at one Salesforce Record Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunity_contact_roles.attributes.urlURL records relative REST API URL for this record. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate the exact
urlaccess value with the resource, account, or membership represented by the same Opportunity Contact Roles row. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Contact Roles; it is link at one Salesforce Record Attributes record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; the returned link or template does not establish that the current credential can retrieve its target.
Contact ID
Contact ID
opportunity_contact_roles.ContactIdContact ID records related Contact ID. It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Contact Role object returned for Opportunity Contact Roles; it is an identifier, not a measured quantity.
ID
ID
opportunity_contact_roles.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Opportunity Contact Roles row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunity Contact Roles and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Contact Role object returned for Opportunity Contact Roles; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
opportunity_contact_roles.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Opportunity Contact Roles rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunity Contact Roles rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Contact Role object returned for Opportunity Contact Roles; it is interpreted at one Salesforce Opportunity Contact Role record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Primary
Is Primary
opportunity_contact_roles.IsPrimaryIs Primary records whether this is the primary contact. It is needed to distinguish Opportunity Contact Roles rows by the exact Salesforce-returned is primary value.- Enables: select Opportunity Contact Roles rows where
IsPrimaryis true or false when comparing the condition described by Is Primary. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Contact Role object returned for Opportunity Contact Roles; it is interpreted at one Salesforce Opportunity Contact Role record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
opportunity_contact_roles.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Contact Roles records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Contact Role object returned for Opportunity Contact Roles; it is interpreted at one Salesforce Opportunity Contact Role record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Opportunity ID
Opportunity ID
opportunity_contact_roles.OpportunityIdOpportunity ID records parent Opportunity ID. It is needed to refer to the same opportunity across records without relying on display text.- Enables: match
OpportunityIdto opportunity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Contact Role object returned for Opportunity Contact Roles; it is an identifier, not a measured quantity.
Role
Role
opportunity_contact_roles.RoleRole records contact role on the opportunity. It is needed to preserve the business or contact responsibility assigned to this relationship.- Enables: filter Opportunity Contact Roles rows by the exact
Rolelabel and attribute the contact’s stated participation to the related Salesforce record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Contact Role object returned for Opportunity Contact Roles; it is interpreted at one Salesforce Opportunity Contact Role record per row; the value describes business or contact participation, not an application authorization grant.
Opportunity History
Opportunity History
opportunity_historyOpportunity History covers Salesforce opportunity field change history.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Salesforce opportunity field change history; the connector reads
/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Amount
Amount
opportunity_history.AmountAmount records the opportunity amount at the time of the stage change. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
Amountamount for Opportunity History records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Attributes
Attributes
opportunity_history.attributesAttributes records Salesforce record metadata including sObject type and resource URL. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
attributeswhile retaining the containing Opportunity History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is link at one Salesforce Opportunity History record per row; the returned link or template does not establish that the current credential can retrieve its target.
Type
Type
opportunity_history.attributes.typeType records the sObject type name (e.g., OpportunityHistory). It is needed to distinguish Opportunity History rows by the exact Salesforce-returned type value.- Enables: separate Opportunity History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunity_history.attributes.urlURL records the relative REST API URL path to this specific record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Opportunity History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Close Date
Close Date
opportunity_history.CloseDateClose Date records the expected close date at the time of the stage change (YYYY-MM-DD). It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity History records by
CloseDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; the schema uses the
Temporal.Datescalar.
Created By ID
Created By ID
opportunity_history.CreatedByIdCreated By ID records the user who triggered the stage change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is an identifier, not a measured quantity.
Created Date
Created Date
opportunity_history.CreatedDateCreated Date records when the stage change occurred (ISO 8601 datetime). It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Currency Iso Code
Currency Iso Code
opportunity_history.CurrencyIsoCodeCurrency Iso Code records ISO 4217 currency code for the amount fields. Present in multi-currency orgs. It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
CurrencyIsoCodewith monetary fields on the same Opportunity History row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
Expected Revenue
Expected Revenue
opportunity_history.ExpectedRevenueExpected Revenue records expected revenue (Amount * Probability / 100) at the time of the stage change. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
ExpectedRevenueamount for Opportunity History records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Forecast Category
Forecast Category
opportunity_history.ForecastCategoryForecast Category records the forecast category at the time of the stage change (e.g., Pipeline, Best Case, Commit, Closed). It is needed to distinguish Opportunity History rows by the exact Salesforce-returned forecast category value.- Enables: separate Opportunity History rows by the exact Salesforce-returned
ForecastCategorylabel when comparing forecast category. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
ID
ID
opportunity_history.IdID records unique identifier for this stage history record. It is needed to distinguish repeated deliveries of the same Opportunity History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunity History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
opportunity_history.IsDeletedIs Deleted indicates whether this history record has been soft-deleted. It is needed to distinguish Opportunity History rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunity History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Opportunity ID
Opportunity ID
opportunity_history.OpportunityIdOpportunity ID records the Opportunity whose stage changed. References the parent Opportunity record. It is needed to refer to the same opportunity across records without relying on display text.- Enables: match
OpportunityIdto opportunity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is an identifier, not a measured quantity.
Prev Amount
Prev Amount
opportunity_history.PrevAmountPrev Amount records the opportunity amount before the stage change, if tracked. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
PrevAmountamount for Opportunity History records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Prev Close Date
Prev Close Date
opportunity_history.PrevCloseDatePrev Close Date records the expected close date before the stage change, if tracked. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity History records by
PrevCloseDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; the schema uses the
Temporal.Datescalar.
Prev Probability
Prev Probability
opportunity_history.PrevProbabilityPrev Probability records the win probability before the stage change, if tracked. It is needed to compare the numeric prev probability reported for one Salesforce Opportunity History record without assuming an unstated unit.- Enables: compare the numeric
PrevProbabilityvalue per Salesforce Opportunity History record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row.
Prev Stage Name
Prev Stage Name
opportunity_history.PrevStageNamePrev Stage Name records the opportunity stage before the change, if tracked. It is needed to distinguish Opportunity History rows by the exact Salesforce-returned prev stage name value.- Enables: separate Opportunity History rows by the exact Salesforce-returned
PrevStageNamelabel when comparing prev stage name. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Probability
Probability
opportunity_history.ProbabilityProbability records the win probability (0-100) at the time of the stage change. It is needed to compare the numeric probability reported for one Salesforce Opportunity History record without assuming an unstated unit.- Enables: compare the numeric
Probabilityvalue per Salesforce Opportunity History record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row.
Stage Name
Stage Name
opportunity_history.StageNameStage Name records the opportunity stage after the change (e.g., Prospecting, Qualification, Closed Won). It is needed to distinguish Opportunity History rows by the exact Salesforce-returned stage name value.- Enables: separate Opportunity History rows by the exact Salesforce-returned
StageNamelabel when comparing stage name. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
System Modstamp
System Modstamp
opportunity_history.SystemModstampSystem Modstamp records system-managed timestamp of the last modification, including automated processes. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity History records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity History object returned for Opportunity History; it is interpreted at one Salesforce Opportunity History record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Opportunity Line Item Schedules
Opportunity Line Item Schedules
opportunity_line_item_schedulesOpportunity Line Item Schedules covers Salesforce opportunity line item schedule records.- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce opportunity line item schedule records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
opportunity_line_item_schedules.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunity Line Item Schedules record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is one nested object per containing Salesforce Opportunity Line Item Schedule object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
opportunity_line_item_schedules.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Opportunity Line Item Schedules rows by the exact Salesforce-returned type value.- Enables: separate Opportunity Line Item Schedules rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Line Item Schedules; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunity_line_item_schedules.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Opportunity Line Item Schedules record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Line Item Schedules; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
opportunity_line_item_schedules.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Opportunity Line Item Schedules row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunity Line Item Schedules and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
opportunity_line_item_schedules.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Opportunity Line Item Schedules rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunity Line Item Schedules rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is interpreted at one Salesforce Opportunity Line Item Schedule record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
opportunity_line_item_schedules.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Item Schedules records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is interpreted at one Salesforce Opportunity Line Item Schedule record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Opportunity Line Item ID
Opportunity Line Item ID
opportunity_line_item_schedules.OpportunityLineItemIdOpportunity Line Item ID records parent Opportunity Line Item ID. It is needed to refer to the same opportunity line item across records without relying on display text.- Enables: match
OpportunityLineItemIdto opportunity line item references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is an identifier, not a measured quantity.
Quantity
Quantity
opportunity_line_item_schedules.QuantityQuantity records scheduled quantity. It is needed to measure the Salesforce-reported number of quantity at one Salesforce Opportunity Line Item Schedule record per row.- Enables: measure and compare the Salesforce-reported number of quantity in
Quantityat one Salesforce Opportunity Line Item Schedule record per row. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is a Salesforce-reported count at one Salesforce Opportunity Line Item Schedule record per row.
Revenue
Revenue
opportunity_line_item_schedules.RevenueRevenue records scheduled revenue. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
Revenueamount for Opportunity Line Item Schedules records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is interpreted at one Salesforce Opportunity Line Item Schedule record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Schedule Date
Schedule Date
opportunity_line_item_schedules.ScheduleDateSchedule Date records schedule date. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Item Schedules records by
ScheduleDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is interpreted at one Salesforce Opportunity Line Item Schedule record per row.
Type
Type
opportunity_line_item_schedules.TypeType records schedule type (Quantity, Revenue, Both). It is needed to distinguish Opportunity Line Item Schedules rows by the exact Salesforce-returned type value.- Enables: separate Opportunity Line Item Schedules rows by the exact Salesforce-returned
Typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Line Item Schedule object returned for Opportunity Line Item Schedules; it is interpreted at one Salesforce Opportunity Line Item Schedule record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Opportunity Line Items
Opportunity Line Items
opportunity_line_itemsOpportunity Line Items covers Salesforce opportunity line items (products on opportunities).- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce opportunity line items (products on opportunities); the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
opportunity_line_items.attributesAttributes records Salesforce record metadata including sObject type and resource URL. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
attributeswhile retaining the containing Opportunity Line Items record as provenance. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is link at one Salesforce CRM Opportunity Line Item record per row; the returned link or template does not establish that the current credential can retrieve its target.
Type
Type
opportunity_line_items.attributes.typeType records the sObject type name, e.g. ‘OpportunityLineItem’. It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned type value.- Enables: separate Opportunity Line Items rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Line Items; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunity_line_items.attributes.urlURL records relative URL path to the individual record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Opportunity Line Items record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Line Items; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
opportunity_line_items.CreatedByIdCreated By ID records ID of the user who created this record. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is an identifier, not a measured quantity.
Created Date
Created Date
opportunity_line_items.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Items records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; the schema uses the
Temporal.DateTimescalar.
Currency Iso Code
Currency Iso Code
opportunity_line_items.CurrencyIsoCodeCurrency Iso Code records ISO 4217 currency code of the line item’s monetary amounts. Populated when the Salesforce org has multi-currency enabled; absent otherwise. It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
CurrencyIsoCodewith monetary fields on the same Opportunity Line Items row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
Description
Description
opportunity_line_items.DescriptionDescription records text description of the opportunity line item. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is description text at one Salesforce CRM Opportunity Line Item record per row; this is only the content included in the Salesforce response for this record.
Discount
Discount
opportunity_line_items.DiscountDiscount records discount percentage applied to this line item (0-100). It is needed to measure the reported discount for one salesforce crm opportunity line item record.- Enables: measure and compare
Discountper Salesforce CRM Opportunity Line Item record in percent. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; its unit or granularity is percent.
Has Quantity Schedule
Has Quantity Schedule
opportunity_line_items.HasQuantityScheduleHas Quantity Schedule indicates whether a quantity schedule has been created for this line item. It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned has quantity schedule value.- Enables: select Opportunity Line Items rows where
HasQuantityScheduleis true or false when comparing the condition described by Has Quantity Schedule. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Has Revenue Schedule
Has Revenue Schedule
opportunity_line_items.HasRevenueScheduleHas Revenue Schedule indicates whether a revenue schedule has been created for this line item. It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned has revenue schedule value.- Enables: select Opportunity Line Items rows where
HasRevenueScheduleis true or false when comparing the condition described by Has Revenue Schedule. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Has Schedule
Has Schedule
opportunity_line_items.HasScheduleHas Schedule indicates whether this line item has any schedule (quantity or revenue). It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned has schedule value.- Enables: select Opportunity Line Items rows where
HasScheduleis true or false when comparing the condition described by Has Schedule. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
ID
ID
opportunity_line_items.IdID records unique 18-character Salesforce identifier for the opportunity line item. It is needed to distinguish repeated deliveries of the same Opportunity Line Items row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunity Line Items and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
opportunity_line_items.IsDeletedIs Deleted indicates whether the record has been soft-deleted (moved to the Recycle Bin). It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunity Line Items rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified By ID
Last Modified By ID
opportunity_line_items.LastModifiedByIdLast Modified By ID records ID of the user who last modified this record. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
opportunity_line_items.LastModifiedDateLast Modified Date records timestamp when the record was last modified by a user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Items records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar.
Last Referenced Date
Last Referenced Date
opportunity_line_items.LastReferencedDateLast Referenced Date records timestamp when the record was last referenced (viewed or referenced in a lookup). It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Items records by
LastReferencedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; the schema uses the
Temporal.DateTimescalar.
Last Viewed Date
Last Viewed Date
opportunity_line_items.LastViewedDateLast Viewed Date records timestamp when the record was last viewed by the current user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Items records by
LastViewedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; the schema uses the
Temporal.DateTimescalar.
List Price
List Price
opportunity_line_items.ListPriceList Price records original list price from the PricebookEntry before any discounts. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
ListPriceamount for Opportunity Line Items records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Name
Name
opportunity_line_items.NameName records auto-generated or user-specified name of the opportunity line item. It is needed to compare the returned name for individual Opportunity Line Items rows and select rows with a specific Name value.- Enables: locate Opportunity Line Items rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; the schema uses the
Identity.Namescalar.
Opportunity
Opportunity
opportunity_line_items.OpportunityOpportunity records inline parent relationship data for the related Opportunity record (when queried via relationship). It is needed to preserve the nested opportunity relationship or details on the parent Salesforce CRM Opportunity Line Item record.- Enables: expand
Opportunityto connect the containing Salesforce CRM Opportunity Line Item row to its returned opportunity entries. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is one nested object per containing Salesforce CRM Opportunity Line Item object when present.
Account ID
Account ID
opportunity_line_items.Opportunity.AccountIdAccount ID records reference to the Account associated with the opportunity. It is needed to refer to the same the across records without relying on display text.- Enables: match
AccountIdtothereferences carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Summary object returned for Opportunity Line Items; it is an identifier, not a measured quantity.
Amount
Amount
opportunity_line_items.Opportunity.AmountAmount records total amount of the opportunity. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
Amountamount for Opportunity Line Items records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Summary object returned for Opportunity Line Items; it is interpreted at one Salesforce Opportunity Summary record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Attributes
Attributes
opportunity_line_items.Opportunity.attributesAttributes records the metadata returned for this Opportunity Line Items record. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunity Line Items record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Summary object returned for Opportunity Line Items; it is one nested object per containing Salesforce Opportunity Summary object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Close Date
Close Date
opportunity_line_items.Opportunity.CloseDateClose Date records expected close date of the opportunity. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Items records by
CloseDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Summary object returned for Opportunity Line Items; it is interpreted at one Salesforce Opportunity Summary record per row; the schema uses the
Temporal.Datescalar.
ID
ID
opportunity_line_items.Opportunity.IdID records unique identifier for the Opportunity record. It is needed to refer to the same opportunity summary across records without relying on display text.- Enables: match
Idto opportunity summary references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Summary object returned for Opportunity Line Items; it is an identifier, not a measured quantity.
Name
Name
opportunity_line_items.Opportunity.NameName records name of the opportunity. It is needed to compare the returned name for individual Opportunity Line Items rows and select rows with a specific Name value.- Enables: locate Opportunity Line Items rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Summary object returned for Opportunity Line Items; it is interpreted at one Salesforce Opportunity Summary record per row; the schema uses the
Identity.Namescalar.
Stage Name
Stage Name
opportunity_line_items.Opportunity.StageNameStage Name records current stage of the opportunity in the sales process. It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned stage name value.- Enables: separate Opportunity Line Items rows by the exact Salesforce-returned
StageNamelabel when comparing stage name. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Summary object returned for Opportunity Line Items; it is interpreted at one Salesforce Opportunity Summary record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Opportunity ID
Opportunity ID
opportunity_line_items.OpportunityIdOpportunity ID records reference to the parent Opportunity record. It is needed to refer to the same the across records without relying on display text.- Enables: match
OpportunityIdtothereferences carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is an identifier, not a measured quantity.
Pricebook Entry ID
Pricebook Entry ID
opportunity_line_items.PricebookEntryIdPricebook Entry ID records reference to the PricebookEntry that links a Product2 to a Pricebook2 with a specific list price. It is needed to refer to the same the across records without relying on display text.- Enables: match
PricebookEntryIdtothereferences carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is an identifier, not a measured quantity.
Product2
Product2
opportunity_line_items.Product2Product2 records inline parent relationship data for the related Product2 record (when queried via relationship). It is needed to preserve the nested product2 relationship or details on the parent Salesforce CRM Opportunity Line Item record.- Enables: expand
Product2to connect the containing Salesforce CRM Opportunity Line Item row to its returned product2 entries. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is one nested object per containing Salesforce CRM Opportunity Line Item object when present.
Attributes
Attributes
opportunity_line_items.Product2.attributesAttributes records the metadata returned for this Opportunity Line Items record. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunity Line Items record. - Interpretation: Salesforce reports this value on the Salesforce Product2 Summary object returned for Opportunity Line Items; it is one nested object per containing Salesforce Product2 Summary object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Description
Description
opportunity_line_items.Product2.DescriptionDescription records description of the product. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Product2 Summary object returned for Opportunity Line Items; it is description text at one Salesforce Product2 Summary record per row; this is only the content included in the Salesforce response for this record.
Family
Family
opportunity_line_items.Product2.FamilyFamily records product family or category. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Opportunity Line Items records by
Familyonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Product2 Summary object returned for Opportunity Line Items; it is interpreted at one Salesforce Product2 Summary record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
ID
ID
opportunity_line_items.Product2.IdID records unique identifier for the Product2 record. It is needed to refer to the same product2 summary across records without relying on display text.- Enables: match
Idto product2 summary references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product2 Summary object returned for Opportunity Line Items; it is an identifier, not a measured quantity.
Is Active
Is Active
opportunity_line_items.Product2.IsActiveIs Active records whether the product is currently active. It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned is active value.- Enables: select Opportunity Line Items rows where
IsActiveis true or false when comparing the condition described by Is Active. - Interpretation: Salesforce reports this value on the Salesforce Product2 Summary object returned for Opportunity Line Items; it is interpreted at one Salesforce Product2 Summary record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Name
Name
opportunity_line_items.Product2.NameName records name of the product. It is needed to compare the returned name for individual Opportunity Line Items rows and select rows with a specific Name value.- Enables: locate Opportunity Line Items rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Product2 Summary object returned for Opportunity Line Items; it is interpreted at one Salesforce Product2 Summary record per row; the schema uses the
Identity.Namescalar.
Product Code
Product Code
opportunity_line_items.Product2.ProductCodeProduct Code records product code or SKU. It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned product code value.- Enables: separate Opportunity Line Items rows by the exact Salesforce-returned
ProductCodelabel when comparing product code. - Interpretation: Salesforce reports this value on the Salesforce Product2 Summary object returned for Opportunity Line Items; it is interpreted at one Salesforce Product2 Summary record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Product2 ID
Product2 ID
opportunity_line_items.Product2IdProduct2 ID records reference to the Product2 record representing the product being sold. It is needed to refer to the same the across records without relying on display text.- Enables: match
Product2Idtothereferences carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is an identifier, not a measured quantity.
Product Code
Product Code
opportunity_line_items.ProductCodeProduct Code records product code inherited from the related Product2 record. It is needed to distinguish Opportunity Line Items rows by the exact Salesforce-returned product code value.- Enables: separate Opportunity Line Items rows by the exact Salesforce-returned
ProductCodelabel when comparing product code. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Quantity
Quantity
opportunity_line_items.QuantityQuantity records number of units of the product being sold. It is needed to measure the Salesforce-reported number of units of the product being sold at one Salesforce CRM Opportunity Line Item record per row.- Enables: measure and compare the Salesforce-reported number of units of the product being sold in
Quantityat one Salesforce CRM Opportunity Line Item record per row. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is a Salesforce-reported count at one Salesforce CRM Opportunity Line Item record per row.
Service Date
Service Date
opportunity_line_items.ServiceDateService Date records date when the product or service is to be provided. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Items records by
ServiceDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; the schema uses the
Temporal.Datescalar.
Sort Order
Sort Order
opportunity_line_items.SortOrderSort Order records sort order position of this line item within the Opportunity. It is needed to compare the numeric sort order reported for one Salesforce CRM Opportunity Line Item record without assuming an unstated unit.- Enables: compare the numeric
SortOrdervalue per Salesforce CRM Opportunity Line Item record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row.
Subtotal
Subtotal
opportunity_line_items.SubtotalSubtotal records line item subtotal before discounts. Equal to Quantity × UnitPrice before discount is applied. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
Subtotalamount for Opportunity Line Items records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
System Modstamp
System Modstamp
opportunity_line_items.SystemModstampSystem Modstamp records system timestamp of last modification, including automated processes. Used as incremental sync cursor. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Line Items records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Total Price
Total Price
opportunity_line_items.TotalPriceTotal Price records total price for this line item (Quantity × UnitPrice). Automatically calculated by Salesforce. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
TotalPriceamount for Opportunity Line Items records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Unit Price
Unit Price
opportunity_line_items.UnitPriceUnit Price records price per unit of the product on this line item, may differ from list price if discounted. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
UnitPriceamount for Opportunity Line Items records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Opportunity Line Item object returned for Opportunity Line Items; it is interpreted at one Salesforce CRM Opportunity Line Item record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Opportunity Split Types
Opportunity Split Types
opportunity_split_typesOpportunity Split Types covers Salesforce opportunity split type metadata.- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce opportunity split type metadata; the connector reads
/services/data/v60.0/queryAllas a snapshot stream in full mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
opportunity_split_types.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunity Split Types record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; it is one nested object per containing Salesforce Opportunity Split Type object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
opportunity_split_types.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Opportunity Split Types rows by the exact Salesforce-returned type value.- Enables: separate Opportunity Split Types rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Split Types; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunity_split_types.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Opportunity Split Types record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Split Types; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created Date
Created Date
opportunity_split_types.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Split Types records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; it is interpreted at one Salesforce Opportunity Split Type record per row; the schema uses the
Temporal.DateTimescalar.
Developer Name
Developer Name
opportunity_split_types.DeveloperNameDeveloper Name records split type developer name. It is needed to compare the returned developer name for individual Opportunity Split Types rows and select rows with a specific DeveloperName value.- Enables: locate Opportunity Split Types rows whose returned developer name exactly matches
DeveloperNameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; it is interpreted at one Salesforce Opportunity Split Type record per row.
ID
ID
opportunity_split_types.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Opportunity Split Types row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunity Split Types and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Active
Is Active
opportunity_split_types.IsActiveIs Active records whether the split type is active. It is needed to distinguish Opportunity Split Types rows by the exact Salesforce-returned is active value.- Enables: select Opportunity Split Types rows where
IsActiveis true or false when comparing the condition described by Is Active. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; it is interpreted at one Salesforce Opportunity Split Type record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
opportunity_split_types.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Opportunity Split Types rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunity Split Types rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; it is interpreted at one Salesforce Opportunity Split Type record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Total Validated
Is Total Validated
opportunity_split_types.IsTotalValidatedIs Total Validated records whether split percentages must total 100%. It is needed to distinguish Opportunity Split Types rows by the exact Salesforce-returned is total validated value.- Enables: select Opportunity Split Types rows where
IsTotalValidatedis true or false when comparing the condition described by Is Total Validated. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; its unit or granularity is percent; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
opportunity_split_types.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Split Types records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; it is interpreted at one Salesforce Opportunity Split Type record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Master Label
Master Label
opportunity_split_types.MasterLabelMaster Label records split type label. It is needed to compare the returned master label for individual Opportunity Split Types rows and select rows with a specific MasterLabel value.- Enables: locate Opportunity Split Types rows whose returned master label exactly matches
MasterLabeland retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split Type object returned for Opportunity Split Types; it is interpreted at one Salesforce Opportunity Split Type record per row.
Opportunity Splits
Opportunity Splits
opportunity_splitsOpportunity Splits covers Salesforce opportunity split records.- Enables: connect the returned Salesforce customer, contact, sales, and relationship records by their explicit record references and lifecycle states.
- Scope: Salesforce opportunity split records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
opportunity_splits.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunity Splits record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; it is one nested object per containing Salesforce Opportunity Split object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
opportunity_splits.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Opportunity Splits rows by the exact Salesforce-returned type value.- Enables: separate Opportunity Splits rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Splits; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunity_splits.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Opportunity Splits record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Splits; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
opportunity_splits.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Opportunity Splits row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunity Splits and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
opportunity_splits.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Opportunity Splits rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunity Splits rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; it is interpreted at one Salesforce Opportunity Split record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
opportunity_splits.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Splits records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; it is interpreted at one Salesforce Opportunity Split record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Opportunity ID
Opportunity ID
opportunity_splits.OpportunityIdOpportunity ID records opportunity ID. It is needed to refer to the same opportunity across records without relying on display text.- Enables: match
OpportunityIdto opportunity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; it is an identifier, not a measured quantity.
Split Amount
Split Amount
opportunity_splits.SplitAmountSplit Amount records split amount. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
SplitAmountamount for Opportunity Splits records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; it is interpreted at one Salesforce Opportunity Split record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Split Owner ID
Split Owner ID
opportunity_splits.SplitOwnerIdSplit Owner ID records split owner User ID. It is needed to refer to the same split owner across records without relying on display text.- Enables: match
SplitOwnerIdto split owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; it is an identifier, not a measured quantity.
Split Percentage
Split Percentage
opportunity_splits.SplitPercentageSplit Percentage records split percentage. It is needed to measure the reported split percentage for one salesforce opportunity split record.- Enables: measure and compare
SplitPercentageper Salesforce Opportunity Split record in percent. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; its unit or granularity is percent.
Split Type ID
Split Type ID
opportunity_splits.SplitTypeIdSplit Type ID records opportunitySplitType ID. It is needed to refer to the same split type across records without relying on display text.- Enables: match
SplitTypeIdto split type references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Split object returned for Opportunity Splits; it is an identifier, not a measured quantity; classification values are Salesforce-returned labels rather than a universal taxonomy.
Opportunity Team Members
Opportunity Team Members
opportunity_team_membersOpportunity Team Members covers Salesforce opportunity team member records.- Enables: resolve the business relationship represented by each Opportunity Team Members row between its explicitly referenced Salesforce records.
- Scope: Salesforce opportunity team member records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
opportunity_team_members.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Opportunity Team Members record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Team Member object returned for Opportunity Team Members; it is one nested object per containing Salesforce Opportunity Team Member object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
opportunity_team_members.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Opportunity Team Members rows by the exact Salesforce-returned type value.- Enables: separate Opportunity Team Members rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Team Members; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
opportunity_team_members.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Opportunity Team Members record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Opportunity Team Members; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
opportunity_team_members.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Opportunity Team Members row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Opportunity Team Members and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Team Member object returned for Opportunity Team Members; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
opportunity_team_members.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Opportunity Team Members rows by the exact Salesforce-returned is deleted value.- Enables: select Opportunity Team Members rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Team Member object returned for Opportunity Team Members; it is interpreted at one Salesforce Opportunity Team Member record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
opportunity_team_members.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Opportunity Team Members records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Team Member object returned for Opportunity Team Members; it is interpreted at one Salesforce Opportunity Team Member record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Opportunity ID
Opportunity ID
opportunity_team_members.OpportunityIdOpportunity ID records opportunity ID. It is needed to refer to the same opportunity across records without relying on display text.- Enables: match
OpportunityIdto opportunity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Team Member object returned for Opportunity Team Members; it is an identifier, not a measured quantity.
Team Member Role
Team Member Role
opportunity_team_members.TeamMemberRoleTeam Member Role records role on the opportunity team. It is needed to preserve the business or contact responsibility assigned to this relationship.- Enables: filter Opportunity Team Members rows by the exact
TeamMemberRolelabel and attribute the team member’s stated business responsibility to the related Salesforce record. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Team Member object returned for Opportunity Team Members; it is interpreted at one Salesforce Opportunity Team Member record per row; the value describes business or contact participation, not an application authorization grant.
User ID
User ID
opportunity_team_members.UserIdUser ID records team member User ID. It is needed to refer to the same user across records without relying on display text.- Enables: match
UserIdto user references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Opportunity Team Member object returned for Opportunity Team Members; it is an identifier, not a measured quantity.
Order Items
Order Items
order_itemsOrder Items covers Salesforce order item records.- Enables: trace the returned commercial or delivery record through its parent reference, status, dates, quantities, and monetary fields.
- Scope: Salesforce order item records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
order_items.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Order Items record. - Interpretation: Salesforce reports this value on the Salesforce Order Item object returned for Order Items; it is one nested object per containing Salesforce Order Item object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
order_items.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Order Items rows by the exact Salesforce-returned type value.- Enables: separate Order Items rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Order Items; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
order_items.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Order Items record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Order Items; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
order_items.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Order Items row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Order Items and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Order Item object returned for Order Items; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
order_items.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Order Items rows by the exact Salesforce-returned is deleted value.- Enables: select Order Items rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Order Item object returned for Order Items; it is interpreted at one Salesforce Order Item record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
order_items.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Order Items records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Order Item object returned for Order Items; it is interpreted at one Salesforce Order Item record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Order ID
Order ID
order_items.OrderIdOrder ID records parent Order ID. It is needed to refer to the same order across records without relying on display text.- Enables: match
OrderIdto order references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Order Item object returned for Order Items; it is an identifier, not a measured quantity.
Product2 ID
Product2 ID
order_items.Product2IdProduct2 ID records product ID. It is needed to refer to the same product2 across records without relying on display text.- Enables: match
Product2Idto product2 references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Order Item object returned for Order Items; it is an identifier, not a measured quantity.
Quantity
Quantity
order_items.QuantityQuantity records quantity. It is needed to measure the Salesforce-reported number of quantity at one Salesforce Order Item record per row.- Enables: measure and compare the Salesforce-reported number of quantity in
Quantityat one Salesforce Order Item record per row. - Interpretation: Salesforce reports this value on the Salesforce Order Item object returned for Order Items; it is a Salesforce-reported count at one Salesforce Order Item record per row.
Unit Price
Unit Price
order_items.UnitPriceUnit Price records unit price. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
UnitPriceamount for Order Items records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Order Item object returned for Order Items; it is interpreted at one Salesforce Order Item record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Orders
Orders
ordersOrders covers Salesforce order records.- Enables: trace the returned commercial or delivery record through its parent reference, status, dates, quantities, and monetary fields.
- Scope: Salesforce order records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
orders.AccountIdAccount ID records account ID. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is an identifier, not a measured quantity.
Attributes
Attributes
orders.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Orders record. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is one nested object per containing Salesforce Order object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
orders.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Orders rows by the exact Salesforce-returned type value.- Enables: separate Orders rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Orders; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
orders.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Orders record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Orders; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Contract ID
Contract ID
orders.ContractIdContract ID records contract ID. It is needed to refer to the same contract across records without relying on display text.- Enables: match
ContractIdto contract references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is an identifier, not a measured quantity.
Effective Date
Effective Date
orders.EffectiveDateEffective Date records order effective date. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Orders records by
EffectiveDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is interpreted at one Salesforce Order record per row.
ID
ID
orders.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Orders row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Orders and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
orders.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Orders rows by the exact Salesforce-returned is deleted value.- Enables: select Orders rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is interpreted at one Salesforce Order record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
orders.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Orders records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is interpreted at one Salesforce Order record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Status
Status
orders.StatusStatus records order status. It is needed to distinguish Orders rows by the exact Salesforce-returned status value.- Enables: separate Orders rows by the exact Salesforce-returned
Statuslabel when comparing status. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is interpreted at one Salesforce Order record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Total Amount
Total Amount
orders.TotalAmountTotal Amount records order total amount. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
TotalAmountamount for Orders records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Order object returned for Orders; it is interpreted at one Salesforce Order record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Partners
Partners
partnersPartners covers Salesforce polymorphic partner relationship records.- Enables: resolve the business relationship represented by each Partners row between its explicitly referenced Salesforce records.
- Scope: Salesforce polymorphic partner relationship records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account From ID
Account From ID
partners.AccountFromIdAccount From ID records main Account or source Account ID in the partner relationship. It is needed to refer to the same account from across records without relying on display text.- Enables: match
AccountFromIdto account from references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is an identifier, not a measured quantity.
Account To ID
Account To ID
partners.AccountToIdAccount To ID records partner Account ID. It is needed to refer to the same account to across records without relying on display text.- Enables: match
AccountToIdto account to references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is an identifier, not a measured quantity.
Attributes
Attributes
partners.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Partners record. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is one nested object per containing Salesforce Partner object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
partners.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Partners rows by the exact Salesforce-returned type value.- Enables: separate Partners rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Partners; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
partners.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Partners record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Partners; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
partners.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Partners row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Partners and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
partners.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Partners rows by the exact Salesforce-returned is deleted value.- Enables: select Partners rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is interpreted at one Salesforce Partner record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Primary
Is Primary
partners.IsPrimaryIs Primary records whether this is the primary partner. It is needed to distinguish Partners rows by the exact Salesforce-returned is primary value.- Enables: select Partners rows where
IsPrimaryis true or false when comparing the condition described by Is Primary. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is interpreted at one Salesforce Partner record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
partners.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Partners records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is interpreted at one Salesforce Partner record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Opportunity ID
Opportunity ID
partners.OpportunityIdOpportunity ID records opportunity ID when the partner is attached to a deal. It is needed to refer to the same opportunity across records without relying on display text.- Enables: match
OpportunityIdto opportunity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is an identifier, not a measured quantity.
Reverse Partner ID
Reverse Partner ID
partners.ReversePartnerIdReverse Partner ID records ID of the reciprocal partner record. It is needed to refer to the same reverse partner across records without relying on display text.- Enables: match
ReversePartnerIdto reverse partner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is an identifier, not a measured quantity.
Role
Role
partners.RoleRole records partner role. It is needed to preserve the business or contact responsibility assigned to this relationship.- Enables: filter partner relationship rows by the exact
Rolelabel and attribute the stated partner role to the related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Partner object returned for Partners; it is interpreted at one Salesforce Partner record per row; the value describes business or contact participation, not an application authorization grant.
Phases
Phases
phasesPhases covers Salesforce custom Phase__c records.- Enables: trace each org-specific Phases row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
Phase__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
phases.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Phases record. - Interpretation: Salesforce reports this value on the Salesforce Phase object returned for Phases; it is one nested object per containing Salesforce Phase object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
phases.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Phases rows by the exact Salesforce-returned type value.- Enables: separate Phases rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Phases; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
phases.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Phases record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Phases; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
phases.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Phases records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Phase object returned for Phases; it is interpreted at one Salesforce Phase record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
phases.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Phases row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Phases and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Phase object returned for Phases; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
phases.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Phases rows by the exact Salesforce-returned is deleted value.- Enables: select Phases rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Phase object returned for Phases; it is interpreted at one Salesforce Phase record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
phases.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Phases records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Phase object returned for Phases; it is interpreted at one Salesforce Phase record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
phases.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Phases rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Phase object returned for Phases; it is interpreted at one Salesforce Phase record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
phases.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Phases records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Phase object returned for Phases; it is interpreted at one Salesforce Phase record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Phases History
Phases History
phases_historyPhases History covers field history for Salesforce Phase__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
Phase__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
phases_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Phases History record. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is one nested object per containing Salesforce Phase History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
phases_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Phases History rows by the exact Salesforce-returned type value.- Enables: separate Phases History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Phases History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
phases_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Phases History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Phases History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
phases_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is an identifier, not a measured quantity.
Created Date
Created Date
phases_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Phases History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is interpreted at one Salesforce Phase History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
phases_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish Phases History rows by the exact Salesforce-returned data type value.- Enables: separate Phases History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is interpreted at one Salesforce Phase History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
phases_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is interpreted at one Salesforce Phase History record per row.
ID
ID
phases_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same Phases History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Phases History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
phases_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish Phases History rows by the exact Salesforce-returned is deleted value.- Enables: select Phases History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is interpreted at one Salesforce Phase History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
phases_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is interpreted at one Salesforce Phase History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
phases_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is interpreted at one Salesforce Phase History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
phases_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Phase History object returned for Phases History; it is an identifier, not a measured quantity.
Pricebook Entries
Pricebook Entries
pricebook_entriesPricebook Entries covers Salesforce pricebook entry bridge (Product2 to Pricebook2).- Enables: trace the returned commercial or delivery record through its parent reference, status, dates, quantities, and monetary fields.
- Scope: Salesforce pricebook entry bridge (Product2 to Pricebook2); the connector reads
/services/data/v60.0/queryAllas a snapshot stream in full mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
pricebook_entries.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Pricebook Entries record. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is one nested object per containing Salesforce Pricebook Entry object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
pricebook_entries.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Pricebook Entries rows by the exact Salesforce-returned type value.- Enables: separate Pricebook Entries rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Pricebook Entries; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
pricebook_entries.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Pricebook Entries record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Pricebook Entries; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created Date
Created Date
pricebook_entries.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Pricebook Entries records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is interpreted at one Salesforce Pricebook Entry record per row; the schema uses the
Temporal.DateTimescalar.
Currency Iso Code
Currency Iso Code
pricebook_entries.CurrencyIsoCodeCurrency Iso Code records ISO 4217 currency code. It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
CurrencyIsoCodewith monetary fields on the same Pricebook Entries row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is interpreted at one Salesforce Pricebook Entry record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
ID
ID
pricebook_entries.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Pricebook Entries row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Pricebook Entries and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Active
Is Active
pricebook_entries.IsActiveIs Active records whether the entry is active. It is needed to distinguish Pricebook Entries rows by the exact Salesforce-returned is active value.- Enables: select Pricebook Entries rows where
IsActiveis true or false when comparing the condition described by Is Active. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is interpreted at one Salesforce Pricebook Entry record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
pricebook_entries.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Pricebook Entries rows by the exact Salesforce-returned is deleted value.- Enables: select Pricebook Entries rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is interpreted at one Salesforce Pricebook Entry record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
pricebook_entries.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Pricebook Entries records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is interpreted at one Salesforce Pricebook Entry record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Pricebook2 ID
Pricebook2 ID
pricebook_entries.Pricebook2IdPricebook2 ID records pricebook ID. It is needed to refer to the same pricebook2 across records without relying on display text.- Enables: match
Pricebook2Idto pricebook2 references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is an identifier, not a measured quantity.
Product2 ID
Product2 ID
pricebook_entries.Product2IdProduct2 ID records product ID. It is needed to refer to the same product2 across records without relying on display text.- Enables: match
Product2Idto product2 references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is an identifier, not a measured quantity.
Unit Price
Unit Price
pricebook_entries.UnitPriceUnit Price records list unit price. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
UnitPriceamount for Pricebook Entries records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Pricebook Entry object returned for Pricebook Entries; it is interpreted at one Salesforce Pricebook Entry record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Pricebooks
Pricebooks
pricebooksPricebooks covers Salesforce pricebook reference catalog.- Enables: inventory the returned data or compute resource and correlate its owner, configuration, lifecycle state, and execution records.
- Scope: Salesforce pricebook reference catalog; the connector reads
/services/data/v60.0/queryAllas a snapshot stream in full mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
pricebooks.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Pricebooks record. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is one nested object per containing Salesforce Pricebook object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
pricebooks.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Pricebooks rows by the exact Salesforce-returned type value.- Enables: separate Pricebooks rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Pricebooks; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
pricebooks.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Pricebooks record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Pricebooks; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created Date
Created Date
pricebooks.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Pricebooks records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is interpreted at one Salesforce Pricebook record per row; the schema uses the
Temporal.DateTimescalar.
Description
Description
pricebooks.DescriptionDescription records pricebook description. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is description text at one Salesforce Pricebook record per row; this is only the content included in the Salesforce response for this record.
ID
ID
pricebooks.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Pricebooks row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Pricebooks and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Active
Is Active
pricebooks.IsActiveIs Active records whether the pricebook is active. It is needed to distinguish Pricebooks rows by the exact Salesforce-returned is active value.- Enables: select Pricebooks rows where
IsActiveis true or false when comparing the condition described by Is Active. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is interpreted at one Salesforce Pricebook record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
pricebooks.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Pricebooks rows by the exact Salesforce-returned is deleted value.- Enables: select Pricebooks rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is interpreted at one Salesforce Pricebook record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Standard
Is Standard
pricebooks.IsStandardIs Standard records whether this is the standard pricebook. It is needed to distinguish Pricebooks rows by the exact Salesforce-returned is standard value.- Enables: select Pricebooks rows where
IsStandardis true or false when comparing the condition described by Is Standard. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is interpreted at one Salesforce Pricebook record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
pricebooks.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Pricebooks records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is interpreted at one Salesforce Pricebook record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Name
Name
pricebooks.NameName records pricebook name. It is needed to compare the returned name for individual Pricebooks rows and select rows with a specific Name value.- Enables: locate Pricebooks rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Pricebook object returned for Pricebooks; it is interpreted at one Salesforce Pricebook record per row.
Products
Products
productsProducts covers Salesforce products catalog.- Enables: inventory the returned data or compute resource and correlate its owner, configuration, lifecycle state, and execution records.
- Scope: Salesforce products catalog; the connector reads
/services/data/v60.0/queryAllas a snapshot stream in full mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
products.attributesAttributes records Salesforce record metadata including sObject type and resource URL. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
attributeswhile retaining the containing Products record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is link at one Salesforce Product record per row; the returned link or template does not establish that the current credential can retrieve its target.
Type
Type
products.attributes.typeType records the sObject type name (e.g., Product2). It is needed to distinguish Products rows by the exact Salesforce-returned type value.- Enables: separate Products rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Attributes object returned for Products; it is interpreted at one Salesforce Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
products.attributes.urlURL records the relative URL path to the individual record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Products record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Attributes object returned for Products; it is link at one Salesforce Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Can Use Quantity Schedule
Can Use Quantity Schedule
products.CanUseQuantityScheduleCan Use Quantity Schedule records whether quantity scheduling is enabled for this product. It is needed to distinguish Products rows by the exact Salesforce-returned can use quantity schedule value.- Enables: select Products rows where
CanUseQuantityScheduleis true or false when comparing the condition described by Can Use Quantity Schedule. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Can Use Revenue Schedule
Can Use Revenue Schedule
products.CanUseRevenueScheduleCan Use Revenue Schedule records whether revenue scheduling is enabled for this product. It is needed to distinguish Products rows by the exact Salesforce-returned can use revenue schedule value.- Enables: select Products rows where
CanUseRevenueScheduleis true or false when comparing the condition described by Can Use Revenue Schedule. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Connection Received ID
Connection Received ID
products.ConnectionReceivedIdConnection Received ID records ID of the Salesforce Connect connection that received this record. It is needed to refer to the same connection received across records without relying on display text.- Enables: match
ConnectionReceivedIdto connection received references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity.
Connection Sent ID
Connection Sent ID
products.ConnectionSentIdConnection Sent ID records ID of the Salesforce Connect connection that sent this record. It is needed to refer to the same connection sent across records without relying on display text.- Enables: match
ConnectionSentIdto connection sent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity.
Created By ID
Created By ID
products.CreatedByIdCreated By ID records ID of the user who created the product. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity.
Created Date
Created Date
products.CreatedDateCreated Date records timestamp when the product was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Products records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the schema uses the
Temporal.DateTimescalar.
Currency Iso Code
Currency Iso Code
products.CurrencyIsoCodeCurrency Iso Code records ISO 4217 currency code for the product (available in multi-currency orgs). It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
CurrencyIsoCodewith monetary fields on the same Products row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
Description
Description
products.DescriptionDescription records description of the product. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is description text at one Salesforce Product record per row; this is only the content included in the Salesforce response for this record.
Display URL
Display URL
products.DisplayUrlDisplay URL records URL to display the product in an external system. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
DisplayUrlwhile retaining the containing Products record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is link at one Salesforce Product record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
External Data Source ID
External Data Source ID
products.ExternalDataSourceIdExternal Data Source ID records ID of the external data source if the product is externally sourced. It is needed to refer to the same external data source across records without relying on display text.- Enables: match
ExternalDataSourceIdto external data source references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity; classification values are Salesforce-returned labels rather than a universal taxonomy.
External ID
External ID
products.ExternalIdExternal ID records external identifier for the product from an external system. It is needed to refer to the same external across records without relying on display text.- Enables: match
ExternalIdto external references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity.
Family
Family
products.FamilyFamily records product family or category for product line categorization. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Products records by
Familyonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
ID
ID
products.IdID records unique Salesforce identifier for the product. It is needed to distinguish repeated deliveries of the same Products row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Products and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Active
Is Active
products.IsActiveIs Active records whether the product is active and available for sale. It is needed to distinguish Products rows by the exact Salesforce-returned is active value.- Enables: select Products rows where
IsActiveis true or false when comparing the condition described by Is Active. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Archived
Is Archived
products.IsArchivedIs Archived records whether the product has been archived. It is needed to distinguish Products rows by the exact Salesforce-returned is archived value.- Enables: select Products rows where
IsArchivedis true or false when comparing the condition described by Is Archived. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
products.IsDeletedIs Deleted records whether the product has been soft-deleted. It is needed to distinguish Products rows by the exact Salesforce-returned is deleted value.- Enables: select Products rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified By ID
Last Modified By ID
products.LastModifiedByIdLast Modified By ID records ID of the user who last modified the product. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
products.LastModifiedDateLast Modified Date records timestamp when the product was last modified by a user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Products records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the schema uses the
Temporal.DateTimescalar.
Last Referenced Date
Last Referenced Date
products.LastReferencedDateLast Referenced Date records timestamp when the product was last referenced by the current user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Products records by
LastReferencedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the schema uses the
Temporal.DateTimescalar.
Last Viewed Date
Last Viewed Date
products.LastViewedDateLast Viewed Date records timestamp when the product was last viewed by the current user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Products records by
LastViewedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the schema uses the
Temporal.DateTimescalar.
Name
Name
products.NameName records name of the product. It is needed to compare the returned name for individual Products rows and select rows with a specific Name value.- Enables: locate Products rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the schema uses the
Identity.Namescalar.
Number Of Quantity Installments
Number Of Quantity Installments
products.NumberOfQuantityInstallmentsNumber Of Quantity Installments records number of quantity installments for the product. It is needed to measure the Salesforce-reported number of quantity installments for the product at one Salesforce Product record per row.- Enables: measure and compare the Salesforce-reported number of quantity installments for the product in
NumberOfQuantityInstallmentsat one Salesforce Product record per row. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is a Salesforce-reported count at one Salesforce Product record per row.
Number Of Revenue Installments
Number Of Revenue Installments
products.NumberOfRevenueInstallmentsNumber Of Revenue Installments records number of revenue installments for the product. It is needed to measure the Salesforce-reported number of revenue installments for the product at one Salesforce Product record per row.- Enables: measure and compare the Salesforce-reported number of revenue installments for the product in
NumberOfRevenueInstallmentsat one Salesforce Product record per row. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is a Salesforce-reported count at one Salesforce Product record per row.
Owner ID
Owner ID
products.OwnerIdOwner ID records ID of the owner of the product record. It is needed to refer to the same owner across records without relying on display text.- Enables: match
OwnerIdto owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity.
Product Code
Product Code
products.ProductCodeProduct Code records product code or SKU used for product-level revenue segmentation. It is needed to distinguish Products rows by the exact Salesforce-returned product code value.- Enables: separate Products rows by the exact Salesforce-returned
ProductCodelabel when comparing product code. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Quantity Installment Period
Quantity Installment Period
products.QuantityInstallmentPeriodQuantity Installment Period records period for quantity installments (e.g., Monthly, Quarterly, Yearly). It is needed to reconstruct the exact schedule or recurrence rule reported for this Salesforce Product record.- Enables: combine
QuantityInstallmentPeriodwith the sibling start time, timezone, interval, or recurrence fields to reproduce the reported schedule. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the value describes a Salesforce schedule rule at the containing record grain and does not show whether a future occurrence actually ran.
Quantity Schedule Type
Quantity Schedule Type
products.QuantityScheduleTypeQuantity Schedule Type records type of quantity schedule (Divide or Repeat). It is needed to distinguish Products rows by the exact Salesforce-returned quantity schedule type value.- Enables: separate Products rows by the exact Salesforce-returned
QuantityScheduleTypelabel when comparing quantity schedule type. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Quantity Unit Of Measure
Quantity Unit Of Measure
products.QuantityUnitOfMeasureQuantity Unit Of Measure records unit of measure for the product quantity (e.g., Each, Box, Case). It is needed to interpret the quantity fields on this product using their returned unit.- Enables: pair
QuantityUnitOfMeasurewith sibling quantity values before comparing product or line-item quantities. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the value is the Salesforce unit label and must not be treated as a quantity itself or converted without an explicit mapping.
Record Type ID
Record Type ID
products.RecordTypeIdRecord Type ID records ID of the record type assigned to this product. It is needed to refer to the same record type across records without relying on display text.- Enables: match
RecordTypeIdto record type references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is an identifier, not a measured quantity; classification values are Salesforce-returned labels rather than a universal taxonomy.
Revenue Installment Period
Revenue Installment Period
products.RevenueInstallmentPeriodRevenue Installment Period records period for revenue installments (e.g., Monthly, Quarterly, Yearly). It is needed to reconstruct the exact schedule or recurrence rule reported for this Salesforce Product record.- Enables: combine
RevenueInstallmentPeriodwith the sibling start time, timezone, interval, or recurrence fields to reproduce the reported schedule. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the value describes a Salesforce schedule rule at the containing record grain and does not show whether a future occurrence actually ran.
Revenue Schedule Type
Revenue Schedule Type
products.RevenueScheduleTypeRevenue Schedule Type records type of revenue schedule (Divide or Repeat). It is needed to distinguish Products rows by the exact Salesforce-returned revenue schedule type value.- Enables: separate Products rows by the exact Salesforce-returned
RevenueScheduleTypelabel when comparing revenue schedule type. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Stock Keeping Unit
Stock Keeping Unit
products.StockKeepingUnitStock Keeping Unit records stock keeping unit for inventory tracking. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Products records by
StockKeepingUnitonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
System Modstamp
System Modstamp
products.SystemModstampSystem Modstamp records system-maintained last modification timestamp used for incremental sync. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Products records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Type
Type
products.TypeType records type of the product if custom product types are configured. It is needed to distinguish Products rows by the exact Salesforce-returned type value.- Enables: separate Products rows by the exact Salesforce-returned
Typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Product object returned for Products; it is interpreted at one Salesforce Product record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Projects
Projects
projectsProjects covers Salesforce custom Project__c records.- Enables: trace each org-specific Projects row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
Project__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
projects.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Projects record. - Interpretation: Salesforce reports this value on the Salesforce Project object returned for Projects; it is one nested object per containing Salesforce Project object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
projects.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Projects rows by the exact Salesforce-returned type value.- Enables: separate Projects rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Projects; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
projects.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Projects record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Projects; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
projects.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Projects records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Project object returned for Projects; it is interpreted at one Salesforce Project record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
projects.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Projects row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Projects and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Project object returned for Projects; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
projects.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Projects rows by the exact Salesforce-returned is deleted value.- Enables: select Projects rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Project object returned for Projects; it is interpreted at one Salesforce Project record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
projects.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Projects records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Project object returned for Projects; it is interpreted at one Salesforce Project record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
projects.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Projects rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Project object returned for Projects; it is interpreted at one Salesforce Project record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
projects.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Projects records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Project object returned for Projects; it is interpreted at one Salesforce Project record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Projects History
Projects History
projects_historyProjects History covers field history for Salesforce Project__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
Project__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
projects_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Projects History record. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is one nested object per containing Salesforce Project History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
projects_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Projects History rows by the exact Salesforce-returned type value.- Enables: separate Projects History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Projects History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
projects_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Projects History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Projects History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
projects_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is an identifier, not a measured quantity.
Created Date
Created Date
projects_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Projects History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is interpreted at one Salesforce Project History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
projects_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish Projects History rows by the exact Salesforce-returned data type value.- Enables: separate Projects History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is interpreted at one Salesforce Project History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
projects_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is interpreted at one Salesforce Project History record per row.
ID
ID
projects_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same Projects History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Projects History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
projects_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish Projects History rows by the exact Salesforce-returned is deleted value.- Enables: select Projects History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is interpreted at one Salesforce Project History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
projects_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is interpreted at one Salesforce Project History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
projects_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is interpreted at one Salesforce Project History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
projects_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Project History object returned for Projects History; it is an identifier, not a measured quantity.
Properties
Properties
propertiesProperties covers Salesforce custom property__c records.- Enables: trace each org-specific Properties row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
property__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
properties.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Properties record. - Interpretation: Salesforce reports this value on the Salesforce Property object returned for Properties; it is one nested object per containing Salesforce Property object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
properties.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Properties rows by the exact Salesforce-returned type value.- Enables: separate Properties rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Properties; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
properties.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Properties record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Properties; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
properties.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Properties records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Property object returned for Properties; it is interpreted at one Salesforce Property record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
properties.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Properties row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Properties and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Property object returned for Properties; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
properties.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Properties rows by the exact Salesforce-returned is deleted value.- Enables: select Properties rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Property object returned for Properties; it is interpreted at one Salesforce Property record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
properties.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Properties records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Property object returned for Properties; it is interpreted at one Salesforce Property record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
properties.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Properties rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Property object returned for Properties; it is interpreted at one Salesforce Property record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
properties.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Properties records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Property object returned for Properties; it is interpreted at one Salesforce Property record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Properties History
Properties History
properties_historyProperties History covers field history for Salesforce property__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
property__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
properties_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Properties History record. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is one nested object per containing Salesforce Property History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
properties_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Properties History rows by the exact Salesforce-returned type value.- Enables: separate Properties History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Properties History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
properties_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Properties History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Properties History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
properties_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is an identifier, not a measured quantity.
Created Date
Created Date
properties_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Properties History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is interpreted at one Salesforce Property History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
properties_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish Properties History rows by the exact Salesforce-returned data type value.- Enables: separate Properties History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is interpreted at one Salesforce Property History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
properties_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is interpreted at one Salesforce Property History record per row.
ID
ID
properties_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same Properties History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Properties History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
properties_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish Properties History rows by the exact Salesforce-returned is deleted value.- Enables: select Properties History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is interpreted at one Salesforce Property History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
properties_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is interpreted at one Salesforce Property History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
properties_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is interpreted at one Salesforce Property History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
properties_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Property History object returned for Properties History; it is an identifier, not a measured quantity.
Proposals
Proposals
proposalsProposals covers Salesforce custom Proposal__c records.- Enables: trace each org-specific Proposals row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
Proposal__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
proposals.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Proposals record. - Interpretation: Salesforce reports this value on the Salesforce Proposal object returned for Proposals; it is one nested object per containing Salesforce Proposal object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
proposals.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Proposals rows by the exact Salesforce-returned type value.- Enables: separate Proposals rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Proposals; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
proposals.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Proposals record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Proposals; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
proposals.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Proposals records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Proposal object returned for Proposals; it is interpreted at one Salesforce Proposal record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
proposals.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Proposals row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Proposals and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Proposal object returned for Proposals; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
proposals.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Proposals rows by the exact Salesforce-returned is deleted value.- Enables: select Proposals rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Proposal object returned for Proposals; it is interpreted at one Salesforce Proposal record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
proposals.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Proposals records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Proposal object returned for Proposals; it is interpreted at one Salesforce Proposal record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
proposals.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Proposals rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Proposal object returned for Proposals; it is interpreted at one Salesforce Proposal record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
proposals.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Proposals records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Proposal object returned for Proposals; it is interpreted at one Salesforce Proposal record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Proposals History
Proposals History
proposals_historyProposals History covers field history for Salesforce Proposal__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
Proposal__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
proposals_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Proposals History record. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is one nested object per containing Salesforce Proposal History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
proposals_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Proposals History rows by the exact Salesforce-returned type value.- Enables: separate Proposals History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Proposals History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
proposals_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Proposals History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Proposals History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
proposals_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is an identifier, not a measured quantity.
Created Date
Created Date
proposals_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Proposals History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is interpreted at one Salesforce Proposal History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
proposals_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish Proposals History rows by the exact Salesforce-returned data type value.- Enables: separate Proposals History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is interpreted at one Salesforce Proposal History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
proposals_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is interpreted at one Salesforce Proposal History record per row.
ID
ID
proposals_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same Proposals History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Proposals History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
proposals_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish Proposals History rows by the exact Salesforce-returned is deleted value.- Enables: select Proposals History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is interpreted at one Salesforce Proposal History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
proposals_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is interpreted at one Salesforce Proposal History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
proposals_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is interpreted at one Salesforce Proposal History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
proposals_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Proposal History object returned for Proposals History; it is an identifier, not a measured quantity.
Quote Line Items
Quote Line Items
quote_line_itemsQuote Line Items covers Salesforce quote line item records.- Enables: trace the returned commercial or delivery record through its parent reference, status, dates, quantities, and monetary fields.
- Scope: Salesforce quote line item records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
quote_line_items.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Quote Line Items record. - Interpretation: Salesforce reports this value on the Salesforce Quote Line Item object returned for Quote Line Items; it is one nested object per containing Salesforce Quote Line Item object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
quote_line_items.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Quote Line Items rows by the exact Salesforce-returned type value.- Enables: separate Quote Line Items rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Quote Line Items; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
quote_line_items.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Quote Line Items record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Quote Line Items; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
quote_line_items.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Quote Line Items row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Quote Line Items and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Quote Line Item object returned for Quote Line Items; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
quote_line_items.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Quote Line Items rows by the exact Salesforce-returned is deleted value.- Enables: select Quote Line Items rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Quote Line Item object returned for Quote Line Items; it is interpreted at one Salesforce Quote Line Item record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
quote_line_items.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Quote Line Items records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Quote Line Item object returned for Quote Line Items; it is interpreted at one Salesforce Quote Line Item record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Product2 ID
Product2 ID
quote_line_items.Product2IdProduct2 ID records product ID. It is needed to refer to the same product2 across records without relying on display text.- Enables: match
Product2Idto product2 references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Quote Line Item object returned for Quote Line Items; it is an identifier, not a measured quantity.
Quantity
Quantity
quote_line_items.QuantityQuantity records quantity. It is needed to measure the Salesforce-reported number of quantity at one Salesforce Quote Line Item record per row.- Enables: measure and compare the Salesforce-reported number of quantity in
Quantityat one Salesforce Quote Line Item record per row. - Interpretation: Salesforce reports this value on the Salesforce Quote Line Item object returned for Quote Line Items; it is a Salesforce-reported count at one Salesforce Quote Line Item record per row.
Quote ID
Quote ID
quote_line_items.QuoteIdQuote ID records parent Quote ID. It is needed to refer to the same quote across records without relying on display text.- Enables: match
QuoteIdto quote references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Quote Line Item object returned for Quote Line Items; it is an identifier, not a measured quantity.
Unit Price
Unit Price
quote_line_items.UnitPriceUnit Price records unit price. It is needed to measure the exact commercial amount reported on this record.- Enables: measure and compare the reported
UnitPriceamount for Quote Line Items records, using the record’s currency code when one is returned. - Interpretation: Salesforce reports this value on the Salesforce Quote Line Item object returned for Quote Line Items; it is interpreted at one Salesforce Quote Line Item record per row; amounts use the Salesforce record currency; consult Currency ISO Code when that field is available rather than assuming a currency.
Quotes
Quotes
quotesQuotes covers Salesforce quote records.- Enables: trace the returned commercial or delivery record through its parent reference, status, dates, quantities, and monetary fields.
- Scope: Salesforce quote records; the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
quotes.AccountIdAccount ID records account ID. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is an identifier, not a measured quantity.
Attributes
Attributes
quotes.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Quotes record. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is one nested object per containing Salesforce Quote object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
quotes.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Quotes rows by the exact Salesforce-returned type value.- Enables: separate Quotes rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Quotes; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
quotes.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Quotes record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Quotes; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Expiration Date
Expiration Date
quotes.ExpirationDateExpiration Date records quote expiration date. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Quotes records by
ExpirationDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is interpreted at one Salesforce Quote record per row.
ID
ID
quotes.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Quotes row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Quotes and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
quotes.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Quotes rows by the exact Salesforce-returned is deleted value.- Enables: select Quotes rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is interpreted at one Salesforce Quote record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
quotes.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Quotes records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is interpreted at one Salesforce Quote record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Name
Name
quotes.NameName records quote name. It is needed to compare the returned name for individual Quotes rows and select rows with a specific Name value.- Enables: locate Quotes rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is interpreted at one Salesforce Quote record per row.
Opportunity ID
Opportunity ID
quotes.OpportunityIdOpportunity ID records opportunity ID. It is needed to refer to the same opportunity across records without relying on display text.- Enables: match
OpportunityIdto opportunity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is an identifier, not a measured quantity.
Status
Status
quotes.StatusStatus records quote status. It is needed to distinguish Quotes rows by the exact Salesforce-returned status value.- Enables: separate Quotes rows by the exact Salesforce-returned
Statuslabel when comparing status. - Interpretation: Salesforce reports this value on the Salesforce Quote object returned for Quotes; it is interpreted at one Salesforce Quote record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Record Types
Record Types
record_typesRecord Types covers Salesforce record type reference catalog.- Enables: inventory the returned data or compute resource and correlate its owner, configuration, lifecycle state, and execution records.
- Scope: Salesforce record type reference catalog; the connector reads
/services/data/v60.0/queryAllas a snapshot stream in full mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Attributes
Attributes
record_types.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Record Types record. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is one nested object per containing Salesforce Record Type object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
record_types.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Record Types rows by the exact Salesforce-returned type value.- Enables: separate Record Types rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Record Types; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
record_types.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Record Types record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Record Types; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created Date
Created Date
record_types.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Record Types records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is interpreted at one Salesforce Record Type record per row; the schema uses the
Temporal.DateTimescalar.
Developer Name
Developer Name
record_types.DeveloperNameDeveloper Name records API developer name. It is needed to compare the returned developer name for individual Record Types rows and select rows with a specific DeveloperName value.- Enables: locate Record Types rows whose returned developer name exactly matches
DeveloperNameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is interpreted at one Salesforce Record Type record per row.
ID
ID
record_types.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Record Types row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Record Types and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Active
Is Active
record_types.IsActiveIs Active records whether the record type is active. It is needed to distinguish Record Types rows by the exact Salesforce-returned is active value.- Enables: select Record Types rows where
IsActiveis true or false when comparing the condition described by Is Active. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is interpreted at one Salesforce Record Type record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
record_types.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Record Types rows by the exact Salesforce-returned is deleted value.- Enables: select Record Types rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is interpreted at one Salesforce Record Type record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
record_types.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Record Types records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is interpreted at one Salesforce Record Type record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Name
Name
record_types.NameName records record type label. It is needed to compare the returned name for individual Record Types rows and select rows with a specific Name value.- Enables: locate Record Types rows whose returned name exactly matches
Nameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is interpreted at one Salesforce Record Type record per row.
Sobject Type
Sobject Type
record_types.SobjectTypeSobject Type records parent sObject type name. It is needed to distinguish Record Types rows by the exact Salesforce-returned sobject type value.- Enables: separate Record Types rows by the exact Salesforce-returned
SobjectTypelabel when comparing sobject type. - Interpretation: Salesforce reports this value on the Salesforce Record Type object returned for Record Types; it is interpreted at one Salesforce Record Type record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Service Contract Events
Service Contract Events
service_contract_eventsService Contract Events covers Salesforce custom Service_Contract_Event__c records.- Enables: trace each org-specific Service Contract Events row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
Service_Contract_Event__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
service_contract_events.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Service Contract Events record. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event object returned for Service Contract Events; it is one nested object per containing Salesforce Service Contract Event object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
service_contract_events.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Service Contract Events rows by the exact Salesforce-returned type value.- Enables: separate Service Contract Events rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Service Contract Events; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
service_contract_events.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Service Contract Events record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Service Contract Events; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
service_contract_events.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Service Contract Events records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event object returned for Service Contract Events; it is interpreted at one Salesforce Service Contract Event record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
service_contract_events.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Service Contract Events row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Service Contract Events and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event object returned for Service Contract Events; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
service_contract_events.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Service Contract Events rows by the exact Salesforce-returned is deleted value.- Enables: select Service Contract Events rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event object returned for Service Contract Events; it is interpreted at one Salesforce Service Contract Event record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
service_contract_events.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Service Contract Events records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event object returned for Service Contract Events; it is interpreted at one Salesforce Service Contract Event record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
service_contract_events.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s Service Contract Events rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event object returned for Service Contract Events; it is interpreted at one Salesforce Service Contract Event record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
service_contract_events.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Service Contract Events records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event object returned for Service Contract Events; it is interpreted at one Salesforce Service Contract Event record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Service Contract Events History
Service Contract Events History
service_contract_events_historyService Contract Events History covers field history for Salesforce Service_Contract_Event__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
Service_Contract_Event__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
service_contract_events_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Service Contract Events History record. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is one nested object per containing Salesforce Service Contract Event History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
service_contract_events_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Service Contract Events History rows by the exact Salesforce-returned type value.- Enables: separate Service Contract Events History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Service Contract Events History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
service_contract_events_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Service Contract Events History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Service Contract Events History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
service_contract_events_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is an identifier, not a measured quantity.
Created Date
Created Date
service_contract_events_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Service Contract Events History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is interpreted at one Salesforce Service Contract Event History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
service_contract_events_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish Service Contract Events History rows by the exact Salesforce-returned data type value.- Enables: separate Service Contract Events History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is interpreted at one Salesforce Service Contract Event History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
service_contract_events_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is interpreted at one Salesforce Service Contract Event History record per row.
ID
ID
service_contract_events_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same Service Contract Events History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Service Contract Events History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
service_contract_events_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish Service Contract Events History rows by the exact Salesforce-returned is deleted value.- Enables: select Service Contract Events History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is interpreted at one Salesforce Service Contract Event History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
service_contract_events_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is interpreted at one Salesforce Service Contract Event History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
service_contract_events_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is interpreted at one Salesforce Service Contract Event History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
service_contract_events_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Service Contract Event History object returned for Service Contract Events History; it is an identifier, not a measured quantity.
SOW Master Line Items
SOW Master Line Items
sow_master_line_itemsSOW Master Line Items covers Salesforce custom SOW_Master_Line_Item__c records.- Enables: trace each org-specific SOW Master Line Items row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
SOW_Master_Line_Item__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
sow_master_line_items.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing SOW Master Line Items record. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item object returned for SOW Master Line Items; it is one nested object per containing Salesforce Sow Master Line Item object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
sow_master_line_items.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish SOW Master Line Items rows by the exact Salesforce-returned type value.- Enables: separate SOW Master Line Items rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for SOW Master Line Items; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
sow_master_line_items.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing SOW Master Line Items record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for SOW Master Line Items; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
sow_master_line_items.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound SOW Master Line Items records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item object returned for SOW Master Line Items; it is interpreted at one Salesforce Sow Master Line Item record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
sow_master_line_items.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same SOW Master Line Items row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for SOW Master Line Items and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item object returned for SOW Master Line Items; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
sow_master_line_items.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish SOW Master Line Items rows by the exact Salesforce-returned is deleted value.- Enables: select SOW Master Line Items rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item object returned for SOW Master Line Items; it is interpreted at one Salesforce Sow Master Line Item record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
sow_master_line_items.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound SOW Master Line Items records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item object returned for SOW Master Line Items; it is interpreted at one Salesforce Sow Master Line Item record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
sow_master_line_items.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s SOW Master Line Items rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item object returned for SOW Master Line Items; it is interpreted at one Salesforce Sow Master Line Item record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
sow_master_line_items.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound SOW Master Line Items records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item object returned for SOW Master Line Items; it is interpreted at one Salesforce Sow Master Line Item record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
SOW Master Line Items History
SOW Master Line Items History
sow_master_line_items_historySOW Master Line Items History covers field history for Salesforce SOW_Master_Line_Item__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
SOW_Master_Line_Item__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
sow_master_line_items_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing SOW Master Line Items History record. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is one nested object per containing Salesforce Sow Master Line Item History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
sow_master_line_items_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish SOW Master Line Items History rows by the exact Salesforce-returned type value.- Enables: separate SOW Master Line Items History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for SOW Master Line Items History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
sow_master_line_items_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing SOW Master Line Items History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for SOW Master Line Items History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
sow_master_line_items_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is an identifier, not a measured quantity.
Created Date
Created Date
sow_master_line_items_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound SOW Master Line Items History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is interpreted at one Salesforce Sow Master Line Item History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
sow_master_line_items_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish SOW Master Line Items History rows by the exact Salesforce-returned data type value.- Enables: separate SOW Master Line Items History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is interpreted at one Salesforce Sow Master Line Item History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
sow_master_line_items_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is interpreted at one Salesforce Sow Master Line Item History record per row.
ID
ID
sow_master_line_items_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same SOW Master Line Items History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for SOW Master Line Items History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
sow_master_line_items_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish SOW Master Line Items History rows by the exact Salesforce-returned is deleted value.- Enables: select SOW Master Line Items History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is interpreted at one Salesforce Sow Master Line Item History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
sow_master_line_items_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is interpreted at one Salesforce Sow Master Line Item History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
sow_master_line_items_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is interpreted at one Salesforce Sow Master Line Item History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
sow_master_line_items_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Sow Master Line Item History object returned for SOW Master Line Items History; it is an identifier, not a measured quantity.
SOWs
SOWs
sowsSOWs covers Salesforce custom SOW__c records.- Enables: trace each org-specific SOWs row through its explicit Salesforce parent references, returned status, and record dates without assuming standard-object semantics.
- Scope: Salesforce custom
SOW__crecords; the connector reads/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
sows.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing SOWs record. - Interpretation: Salesforce reports this value on the Salesforce Sow object returned for SOWs; it is one nested object per containing Salesforce Sow object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Type
Type
sows.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish SOWs rows by the exact Salesforce-returned type value.- Enables: separate SOWs rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for SOWs; it is interpreted at one Salesforce Record Attributes record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
URL
URL
sows.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing SOWs record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for SOWs; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Created Date
Created Date
sows.CreatedDateCreated Date records timestamp when the record was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound SOWs records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Sow object returned for SOWs; it is interpreted at one Salesforce Sow record per row; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
ID
ID
sows.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same SOWs row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for SOWs and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Sow object returned for SOWs; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Is Deleted
Is Deleted
sows.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish SOWs rows by the exact Salesforce-returned is deleted value.- Enables: select SOWs rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Sow object returned for SOWs; it is interpreted at one Salesforce Sow record per row; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Last Modified Date
Last Modified Date
sows.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound SOWs records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Sow object returned for SOWs; it is interpreted at one Salesforce Sow record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
Name
Name
sows.NameName records record display name when present. It is needed to preserve the configured Salesforce org’s specific name attribute without treating it as standard Salesforce behavior.- Enables: select this Salesforce org’s SOWs rows by the exact custom
Namevalue while keeping comparisons within the same org-specific object contract. - Interpretation: Salesforce reports this value on the Salesforce Sow object returned for SOWs; it is interpreted at one Salesforce Sow record per row; the schema uses the
Identity.Namescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
System Modstamp
System Modstamp
sows.SystemModstampSystem Modstamp records system modification timestamp. It is needed to place the record at the time or date reported for this event or state.- Enables: bound SOWs records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Sow object returned for SOWs; it is interpreted at one Salesforce Sow record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar; this is an org-specific custom field, so its meaning must not be generalized to other Salesforce orgs.
SOWs History
SOWs History
sows_historySOWs History covers field history for Salesforce SOW__c.- Enables: reconcile each returned field change with its parent Salesforce record, changed field, old value, new value, and change time.
- Scope: Field history for Salesforce
SOW__c; the connector reads/services/data/v60.0/queryAllas an event stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential. These object and field meanings are specific to the configured Salesforce org and are not universal Salesforce classifications.
Attributes
Attributes
sows_history.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing SOWs History record. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is one nested object per containing Salesforce Sow History object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
sows_history.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish SOWs History rows by the exact Salesforce-returned type value.- Enables: separate SOWs History rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for SOWs History; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
sows_history.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing SOWs History record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for SOWs History; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Created By ID
Created By ID
sows_history.CreatedByIdCreated By ID records Salesforce ID of the user who made the change. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is an identifier, not a measured quantity.
Created Date
Created Date
sows_history.CreatedDateCreated Date records timestamp when the field change was recorded. It is needed to place the record at the time or date reported for this event or state.- Enables: bound SOWs History records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is interpreted at one Salesforce Sow History record per row; the connector also declares it for record ordering; the schema assigns the
event_timesemantic role; the schema uses theTemporal.DateTimescalar.
Data Type
Data Type
sows_history.DataTypeData Type records data type of the changed field when available. It is needed to distinguish SOWs History rows by the exact Salesforce-returned data type value.- Enables: separate SOWs History rows by the exact Salesforce-returned
DataTypelabel when comparing data type. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is interpreted at one Salesforce Sow History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Field
Field
sows_history.FieldField records API name of the field that changed, or special values like created. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
Fieldwith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is interpreted at one Salesforce Sow History record per row.
ID
ID
sows_history.IdID records unique identifier for this history record. It is needed to distinguish repeated deliveries of the same SOWs History row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for SOWs History and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
sows_history.IsDeletedIs Deleted records whether this history record has been soft-deleted. It is needed to distinguish SOWs History rows by the exact Salesforce-returned is deleted value.- Enables: select SOWs History rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is interpreted at one Salesforce Sow History record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
New Value
New Value
sows_history.NewValueNew Value records new field value after the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
NewValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is interpreted at one Salesforce Sow History record per row; the schema uses the
Generic.JSONscalar.
Old Value
Old Value
sows_history.OldValueOld Value records previous field value before the change. It is needed to reconstruct the specific before-and-after field change represented by this history row.- Enables: reconcile
OldValuewith the same history row’s parent record identifier, changed-field name, old value, new value, and change time where returned. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is interpreted at one Salesforce Sow History record per row; the schema uses the
Generic.JSONscalar.
Parent ID
Parent ID
sows_history.ParentIdParent ID records Salesforce ID of the parent custom-object record that changed. It is needed to refer to the same parent across records without relying on display text.- Enables: match
ParentIdto parent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Sow History object returned for SOWs History; it is an identifier, not a measured quantity.
Task Relations
Task Relations
task_relationsTask Relations covers Salesforce task relation junction records (Shared Activities).- Enables: resolve the business relationship represented by each Task Relations row between its explicitly referenced Salesforce records.
- Scope: Salesforce task relation junction records (Shared Activities); the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
task_relations.AccountIdAccount ID records related Account ID when applicable. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Task Relation object returned for Task Relations; it is an identifier, not a measured quantity.
Attributes
Attributes
task_relations.attributesAttributes records Salesforce record metadata. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Task Relations record. - Interpretation: Salesforce reports this value on the Salesforce Task Relation object returned for Task Relations; it is one nested object per containing Salesforce Task Relation object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
task_relations.attributes.typeType records the Salesforce sObject type name. It is needed to distinguish Task Relations rows by the exact Salesforce-returned type value.- Enables: separate Task Relations rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Task Relations; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
task_relations.attributes.urlURL records relative REST API URL for this record. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Task Relations record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Task Relations; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
ID
ID
task_relations.IdID records unique Salesforce record identifier. It is needed to distinguish repeated deliveries of the same Task Relations row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Task Relations and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce Task Relation object returned for Task Relations; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Deleted
Is Deleted
task_relations.IsDeletedIs Deleted records whether the record has been soft-deleted. It is needed to distinguish Task Relations rows by the exact Salesforce-returned is deleted value.- Enables: select Task Relations rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce Task Relation object returned for Task Relations; it is interpreted at one Salesforce Task Relation record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is What
Is What
task_relations.IsWhatIs What records whether relation is a What (vs Who). It is needed to distinguish Task Relations rows by the exact Salesforce-returned is what value.- Enables: select Task Relations rows where
IsWhatis true or false when comparing the condition described by Is What. - Interpretation: Salesforce reports this value on the Salesforce Task Relation object returned for Task Relations; it is interpreted at one Salesforce Task Relation record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified Date
Last Modified Date
task_relations.LastModifiedDateLast Modified Date records timestamp when the record was last modified. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Task Relations records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce Task Relation object returned for Task Relations; it is interpreted at one Salesforce Task Relation record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Relation ID
Relation ID
task_relations.RelationIdRelation ID records related record ID (Contact, Lead, User, etc.). It is needed to refer to the same relation across records without relying on display text.- Enables: match
RelationIdto relation references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Task Relation object returned for Task Relations; it is an identifier, not a measured quantity.
Task ID
Task ID
task_relations.TaskIdTask ID records parent Task ID. It is needed to refer to the same task across records without relying on display text.- Enables: match
TaskIdto task references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce Task Relation object returned for Task Relations; it is an identifier, not a measured quantity.
Tasks
Tasks
tasksTasks covers Salesforce tasks (to-do items and activities).- Enables: follow service work from the reported record through its returned assignee, status, priority, and timestamps during triage or fulfillment.
- Scope: Salesforce tasks (to-do items and activities); the connector reads
/services/data/v60.0/queryAllas a changelog stream in incremental mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
Account ID
Account ID
tasks.AccountIdAccount ID records ID of the account associated with this task, derived from WhoId or WhatId. It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Activity Date
Activity Date
tasks.ActivityDateActivity Date records due date of the task in YYYY-MM-DD format. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Tasks records by
ActivityDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema uses the
Temporal.Datescalar.
Attributes
Attributes
tasks.attributesAttributes records Salesforce record metadata including sObject type and resource URL. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
attributeswhile retaining the containing Tasks record as provenance. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is link at one Salesforce CRM Task record per row; the returned link or template does not establish that the current credential can retrieve its target.
Type
Type
tasks.attributes.typeType records the sObject type name (e.g., Task). It is needed to distinguish Tasks rows by the exact Salesforce-returned type value.- Enables: separate Tasks rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Tasks; it is interpreted at one Salesforce Record Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
tasks.attributes.urlURL records relative URL path to the individual record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Tasks record as provenance. - Interpretation: Salesforce reports this value on the Salesforce Record Attributes object returned for Tasks; it is link at one Salesforce Record Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Call Disposition
Call Disposition
tasks.CallDispositionCall Disposition records result or outcome of the call. It is needed to inventory the exact Salesforce-reported configuration or classification represented by this field.- Enables: compare
CallDispositionamong Tasks records when reconciling this specific configuration, source, or classification. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the value is a Salesforce-returned or configured label at the Salesforce CRM Task grain rather than a universal taxonomy.
Call Duration In Seconds
Call Duration In Seconds
tasks.CallDurationInSecondsCall Duration In Seconds records duration of the call in seconds, if the task is a call activity. It is needed to measure the exact duration reported for one Salesforce CRM Task record using the Salesforce duration encoding described by the field.- Enables: measure and compare
CallDurationInSecondsper Salesforce CRM Task record in seconds. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; its unit or granularity is seconds.
Call Object
Call Object
tasks.CallObjectCall Object records identifier for the call object associated with this task from a CTI system. It is needed to refer to the same call object across records without relying on display text.- Enables: match
CallObjectto call object references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Call Type
Call Type
tasks.CallTypeCall Type records type of call: Inbound, Internal, or Outbound. It is needed to distinguish Tasks rows by the exact Salesforce-returned call type value.- Enables: separate Tasks rows by the exact Salesforce-returned
CallTypelabel when comparing call type. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Completed Date Time
Completed Date Time
tasks.CompletedDateTimeCompleted Date Time records timestamp when the task was completed. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Tasks records by
CompletedDateTime, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema uses the
Temporal.DateTimescalar.
Connection Received ID
Connection Received ID
tasks.ConnectionReceivedIdConnection Received ID records ID of the Salesforce-to-Salesforce connection that received this task. It is needed to refer to the same connection received across records without relying on display text.- Enables: match
ConnectionReceivedIdto connection received references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Connection Sent ID
Connection Sent ID
tasks.ConnectionSentIdConnection Sent ID records ID of the Salesforce-to-Salesforce connection that sent this task. It is needed to refer to the same connection sent across records without relying on display text.- Enables: match
ConnectionSentIdto connection sent references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Created By ID
Created By ID
tasks.CreatedByIdCreated By ID records ID of the user who created this task. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Created Date
Created Date
tasks.CreatedDateCreated Date records timestamp when the task was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Tasks records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema uses the
Temporal.DateTimescalar.
Currency Iso Code
Currency Iso Code
tasks.CurrencyIsoCodeCurrency Iso Code records ISO 4217 currency code for the task (multi-currency orgs only). It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
CurrencyIsoCodewith monetary fields on the same Tasks row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
Description
Description
tasks.DescriptionDescription records full text description or body of the task. It is needed to inspect the exact description text included with this record.- Enables: inspect the description text returned in
Descriptionand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is description text at one Salesforce CRM Task record per row; this is only the content included in the Salesforce response for this record.
Email
tasks.EmailEmail records email address associated with the task, typically for email task subtypes. It is needed to attribute this Tasks row to the returned person, account, or organization reference.- Enables: attribute the Tasks row to the returned person or account and match the exact
Emailvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema uses the
Contact.Emailscalar.
ID
ID
tasks.IdID records unique Salesforce identifier for the task. It is needed to distinguish repeated deliveries of the same Tasks row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Tasks and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Is Archived
Is Archived
tasks.IsArchivedIs Archived records whether the task has been archived. It is needed to distinguish Tasks rows by the exact Salesforce-returned is archived value.- Enables: select Tasks rows where
IsArchivedis true or false when comparing the condition described by Is Archived. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Closed
Is Closed
tasks.IsClosedIs Closed records whether the task has been completed or closed. It is needed to distinguish Tasks rows by the exact Salesforce-returned is closed value.- Enables: select Tasks rows where
IsClosedis true or false when comparing the condition described by Is Closed. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
tasks.IsDeletedIs Deleted records whether the task has been soft-deleted. It is needed to distinguish Tasks rows by the exact Salesforce-returned is deleted value.- Enables: select Tasks rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is High Priority
Is High Priority
tasks.IsHighPriorityIs High Priority records whether the task is flagged as high priority. It is needed to distinguish Tasks rows by the exact Salesforce-returned is high priority value.- Enables: select Tasks rows where
IsHighPriorityis true or false when comparing the condition described by Is High Priority. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Recurrence
Is Recurrence
tasks.IsRecurrenceIs Recurrence records whether this task is a recurring task master record. It is needed to distinguish Tasks rows by the exact Salesforce-returned is recurrence value.- Enables: select Tasks rows where
IsRecurrenceis true or false when comparing the condition described by Is Recurrence. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Reminder Set
Is Reminder Set
tasks.IsReminderSetIs Reminder Set records whether a reminder is set for this task. It is needed to distinguish Tasks rows by the exact Salesforce-returned is reminder set value.- Enables: select Tasks rows where
IsReminderSetis true or false when comparing the condition described by Is Reminder Set. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Visible In Self Service
Is Visible In Self Service
tasks.IsVisibleInSelfServiceIs Visible In Self Service records whether the task is visible in the self-service portal. It is needed to distinguish Tasks rows by the exact Salesforce-returned is visible in self service value.- Enables: select Tasks rows where
IsVisibleInSelfServiceis true or false when comparing the condition described by Is Visible In Self Service. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Last Modified By ID
Last Modified By ID
tasks.LastModifiedByIdLast Modified By ID records ID of the user who last modified this task. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
tasks.LastModifiedDateLast Modified Date records timestamp when the task was last modified by a user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Tasks records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the connector also declares it for record ordering; the schema uses the
Temporal.DateTimescalar.
Owner ID
Owner ID
tasks.OwnerIdOwner ID records ID of the user who owns this task. It is needed to refer to the same owner across records without relying on display text.- Enables: match
OwnerIdto owner references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Phone
Phone
tasks.PhonePhone records phone number associated with the task. It is needed to preserve the exact Salesforce-reported contact number for the person, company, or location represented by this row.- Enables: match the exact contact number in
Phoneto the same Salesforce CRM Task record without treating it as an account identifier. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema uses the
Contact.PhoneNumberscalar.
Priority
Priority
tasks.PriorityPriority records priority level of the task (e.g., High, Normal, Low). It is needed to distinguish Tasks rows by the exact Salesforce-returned priority value.- Enables: separate Tasks rows by the exact Salesforce-returned
Prioritylabel when comparing priority. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Record Type ID
Record Type ID
tasks.RecordTypeIdRecord Type ID records ID of the record type assigned to this task. It is needed to refer to the same record type across records without relying on display text.- Enables: match
RecordTypeIdto record type references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity; classification values are Salesforce-returned labels rather than a universal taxonomy.
Recurrence Activity ID
Recurrence Activity ID
tasks.RecurrenceActivityIdRecurrence Activity ID records ID of the recurring activity series this task belongs to. It is needed to refer to the same recurrence activity across records without relying on display text.- Enables: match
RecurrenceActivityIdto recurrence activity references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Recurrence Day Of Month
Recurrence Day Of Month
tasks.RecurrenceDayOfMonthRecurrence Day Of Month records day of the month on which the task recurs. It is needed to compare the numeric recurrence day of month reported for one Salesforce CRM Task record without assuming an unstated unit.- Enables: compare the numeric
RecurrenceDayOfMonthvalue per Salesforce CRM Task record without assigning a unit not declared by the schema description. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row.
Recurrence Day Of Week Mask
Recurrence Day Of Week Mask
tasks.RecurrenceDayOfWeekMaskRecurrence Day Of Week Mask records bitmask representing which days of the week the task recurs on. It is needed to measure the reported recurrence day of week mask for one salesforce crm task record.- Enables: measure and compare
RecurrenceDayOfWeekMaskper Salesforce CRM Task record in days. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; its unit or granularity is days.
Recurrence End Date Only
Recurrence End Date Only
tasks.RecurrenceEndDateOnlyRecurrence End Date Only records end date for the recurrence pattern. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Tasks records by
RecurrenceEndDateOnly, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema uses the
Temporal.Datescalar.
Recurrence Instance
Recurrence Instance
tasks.RecurrenceInstanceRecurrence Instance records week within a month for monthly recurrence (e.g., First, Second, Third, Fourth, Last). It is needed to reconstruct the exact schedule or recurrence rule reported for this Salesforce CRM Task record.- Enables: combine
RecurrenceInstancewith the sibling start time, timezone, interval, or recurrence fields to reproduce the reported schedule. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the value describes a Salesforce schedule rule at the containing record grain and does not show whether a future occurrence actually ran.
Recurrence Interval
Recurrence Interval
tasks.RecurrenceIntervalRecurrence Interval records interval between recurrences (e.g., every N days/weeks/months). It is needed to measure the reported recurrence interval for one salesforce crm task record.- Enables: measure and compare
RecurrenceIntervalper Salesforce CRM Task record in days. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; its unit or granularity is days.
Recurrence Month Of Year
Recurrence Month Of Year
tasks.RecurrenceMonthOfYearRecurrence Month Of Year records month of the year for yearly recurrence patterns. It is needed to reconstruct the exact schedule or recurrence rule reported for this Salesforce CRM Task record.- Enables: combine
RecurrenceMonthOfYearwith the sibling start time, timezone, interval, or recurrence fields to reproduce the reported schedule. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the value describes a Salesforce schedule rule at the containing record grain and does not show whether a future occurrence actually ran.
Recurrence Regenerated Type
Recurrence Regenerated Type
tasks.RecurrenceRegeneratedTypeRecurrence Regenerated Type records regeneration type for recurring tasks (e.g., RecurrenceRegenerateAfterDueDate, RecurrenceRegenerateAfterToday, RecurrenceRegenerated). It is needed to distinguish Tasks rows by the exact Salesforce-returned recurrence regenerated type value.- Enables: separate Tasks rows by the exact Salesforce-returned
RecurrenceRegeneratedTypelabel when comparing recurrence regenerated type. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Recurrence Start Date Only
Recurrence Start Date Only
tasks.RecurrenceStartDateOnlyRecurrence Start Date Only records start date for the recurrence pattern. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Tasks records by
RecurrenceStartDateOnly, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema uses the
Temporal.Datescalar.
Recurrence Time Zone Sid Key
Recurrence Time Zone Sid Key
tasks.RecurrenceTimeZoneSidKeyRecurrence Time Zone Sid Key records time zone for the recurrence schedule. It is needed to preserve the Salesforce-reported timezone or locale setting for the same record.- Enables: compare the Salesforce-reported timezone or locale setting in
RecurrenceTimeZoneSidKeyfor individual Tasks rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity; the value is timezone or locale setting; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Recurrence Type
Recurrence Type
tasks.RecurrenceTypeRecurrence Type records recurrence pattern type (e.g., RecursDaily, RecursWeekly, RecursMonthly, RecursMonthlyNth, RecursYearly, RecursYearlyNth). It is needed to distinguish Tasks rows by the exact Salesforce-returned recurrence type value.- Enables: separate Tasks rows by the exact Salesforce-returned
RecurrenceTypelabel when comparing recurrence type. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Reminder Date Time
Reminder Date Time
tasks.ReminderDateTimeReminder Date Time records date and time the reminder fires for this task. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Tasks records by
ReminderDateTime, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema uses the
Temporal.DateTimescalar.
Status
Status
tasks.StatusStatus records current status of the task (e.g., Not Started, In Progress, Completed, Waiting on someone else, Deferred). It is needed to distinguish Tasks rows by the exact Salesforce-returned status value.- Enables: separate Tasks rows by the exact Salesforce-returned
Statuslabel when comparing status. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Subject
Subject
tasks.SubjectSubject records brief description or title of the task. It is needed to inspect the exact subject text returned for this Salesforce CRM Task record.- Enables: attribute the subject text in
Subjectto the containing Tasks identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; this is only the subject text included in the Salesforce response for this record.
System Modstamp
System Modstamp
tasks.SystemModstampSystem Modstamp records system-maintained last modification timestamp used for incremental sync. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Tasks records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Task Subtype
Task Subtype
tasks.TaskSubtypeTask Subtype records subtype of the task such as Call, Email, Task, or ListEmail. It is needed to attribute this Tasks row to the returned person, account, or organization reference.- Enables: attribute the Tasks row to the returned person or account and match the exact
TaskSubtypevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row.
Type
Type
tasks.TypeType records type of task activity (e.g., Call, Meeting, Email, Other). It is needed to distinguish Tasks rows by the exact Salesforce-returned type value.- Enables: separate Tasks rows by the exact Salesforce-returned
Typelabel when comparing type. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is interpreted at one Salesforce CRM Task record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
What Count
What Count
tasks.WhatCountWhat Count records number of related records associated with this task via TaskWhatRelation. It is needed to measure the Salesforce-reported number of related records associated with this task via TaskWhatRelation at one Salesforce CRM Task record per row.- Enables: measure and compare the Salesforce-reported number of related records associated with this task via TaskWhatRelation in
WhatCountat one Salesforce CRM Task record per row. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is a Salesforce-reported count at one Salesforce CRM Task record per row.
What ID
What ID
tasks.WhatIdWhat ID records ID of the related record such as Account, Opportunity, or other business object. It is needed to refer to the same what across records without relying on display text.- Enables: match
WhatIdto what references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Who Count
Who Count
tasks.WhoCountWho Count records number of contacts related to this task via TaskWhoRelation. It is needed to measure the Salesforce-reported number of contacts related to this task via TaskWhoRelation at one Salesforce CRM Task record per row.- Enables: measure and compare the Salesforce-reported number of contacts related to this task via TaskWhoRelation in
WhoCountat one Salesforce CRM Task record per row. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is a Salesforce-reported count at one Salesforce CRM Task record per row.
Who ID
Who ID
tasks.WhoIdWho ID records ID of the related contact or lead (Name relationship). It is needed to refer to the same who across records without relying on display text.- Enables: match
WhoIdto who references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce CRM Task object returned for Tasks; it is an identifier, not a measured quantity.
Users
Users
usersUsers covers Salesforce users.- Enables: map the Salesforce accounts and memberships represented by Users records and trace a returned access assignment to its account or group.
- Scope: Salesforce users; the connector reads
/services/data/v60.0/queryAllas a snapshot stream in full mode. Object, record-sharing, and field visibility follow the configured Salesforce credential; inaccessible records or fields are not returned. Salesforce tombstone information is preserved when returned, while visibility still follows the configured credential.
About Me
About Me
users.AboutMeAbout Me records user’s About Me section on their profile. It is needed to inspect the exact profile biography text returned for this Salesforce User record.- Enables: attribute the profile biography text in
AboutMeto the containing Users identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; this is only the profile biography text included in the Salesforce response for this record.
Account ID
Account ID
users.AccountIdAccount ID records ID of the associated Account record (for portal/community users). It is needed to refer to the same account across records without relying on display text.- Enables: match
AccountIdto account references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Address
Address
users.AddressAddress records compound address field. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
Addressfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is one nested object per containing Salesforce User object when present; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
City
City
users.Address.cityCity records city. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
cityfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Country
Country
users.Address.countryCountry records country. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
countryfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Country Code
Country Code
users.Address.countryCodeCountry Code records ISO country code. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
countryCodefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Geocode Accuracy
Geocode Accuracy
users.Address.geocodeAccuracyGeocode Accuracy records accuracy level of the geocode. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
geocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
Latitude
Latitude
users.Address.latitudeLatitude records latitude coordinate. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
latitudefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Longitude
Longitude
users.Address.longitudeLongitude records longitude coordinate. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
longitudefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Postal Code
Postal Code
users.Address.postalCodePostal Code records postal or ZIP code. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
postalCodefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
State
State
users.Address.stateState records state or province. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
statefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
State Code
State Code
users.Address.stateCodeState Code records ISO state/province code. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
stateCodefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Street
Street
users.Address.streetStreet records street address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
streetfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce Address object returned for Users; it is interpreted at one Salesforce Address record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Alias
Alias
users.AliasAlias records short name used to identify the user on list pages. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Users records by
Aliasonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Attributes
Attributes
users.attributesAttributes records Salesforce sObject metadata attributes. It is needed to inspect the exact metadata included with this record.- Enables: inspect the exact metadata keys returned in
attributesand associate them with the containing Users record. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is one nested object per containing Salesforce User object when present; keys and availability follow this Salesforce response and may vary by object type or Salesforce configuration.
Type
Type
users.attributes.typeType records the sObject type name (e.g., User). It is needed to distinguish Users rows by the exact Salesforce-returned type value.- Enables: separate Users rows by the exact Salesforce-returned
typelabel when comparing type. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Users; it is interpreted at one S Object Attributes record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
URL
URL
users.attributes.urlURL records relative URL path to the record resource. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
urlwhile retaining the containing Users record as provenance. - Interpretation: Salesforce reports this value on the S Object Attributes object returned for Users; it is link at one S Object Attributes record per row; the returned link or template does not establish that the current credential can retrieve its target.
Badge Text
Badge Text
users.BadgeTextBadge Text records custom badge text displayed on the user’s profile. It is needed to inspect the exact profile badge text returned for this Salesforce User record.- Enables: attribute the profile badge text in
BadgeTextto the containing Users identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; this is only the profile badge text included in the Salesforce response for this record.
Banner Photo URL
Banner Photo URL
users.BannerPhotoUrlBanner Photo URL records URL of the user’s banner photo. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
BannerPhotoUrlwhile retaining the containing Users record as provenance. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is link at one Salesforce User record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
Call Center ID
Call Center ID
users.CallCenterIdCall Center ID records ID of the call center associated with this user. It is needed to refer to the same call center across records without relying on display text.- Enables: match
CallCenterIdto call center references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
City
City
users.CityCity records city of the user’s address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
Cityfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Community Nickname
Community Nickname
users.CommunityNicknameCommunity Nickname records nickname used in Salesforce communities/Experience Cloud. It is needed to compare the returned community nickname for individual Users rows and select rows with a specific CommunityNickname value.- Enables: locate Users rows whose returned community nickname exactly matches
CommunityNicknameand retain the Salesforce identifier for any cross-record match. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row.
Company Name
Company Name
users.CompanyNameCompany Name records user’s company name. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
CompanyNamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row.
Contact ID
Contact ID
users.ContactIdContact ID records ID of the associated Contact record (for portal/community users). It is needed to refer to the same contact across records without relying on display text.- Enables: match
ContactIdto contact references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Country
Country
users.CountryCountry records country of the user’s address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
Countryfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Country Code
Country Code
users.CountryCodeCountry Code records ISO country code. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
CountryCodefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Created By ID
Created By ID
users.CreatedByIdCreated By ID records ID of the user who created this record. It is needed to refer to the same created by across records without relying on display text.- Enables: match
CreatedByIdto created by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Created Date
Created Date
users.CreatedDateCreated Date records timestamp when the user was created. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Users records by
CreatedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Temporal.DateTimescalar.
Currency Iso Code
Currency Iso Code
users.CurrencyIsoCodeCurrency Iso Code records currency ISO code for the user record. It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
CurrencyIsoCodewith monetary fields on the same Users row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
Default Currency Iso Code
Default Currency Iso Code
users.DefaultCurrencyIsoCodeDefault Currency Iso Code records default currency ISO code for the user (multi-currency orgs). It is needed to retain the currency code needed to interpret monetary fields on the same record.- Enables: pair
DefaultCurrencyIsoCodewith monetary fields on the same Users row so amounts are compared only within their returned currency context. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; this is currency context, not a monetary amount; classification values are Salesforce-returned labels rather than a universal taxonomy.
Delegated Approver ID
Delegated Approver ID
users.DelegatedApproverIdDelegated Approver ID records ID of the user’s delegated approver. It is needed to refer to the same delegated approver across records without relying on display text.- Enables: match
DelegatedApproverIdto delegated approver references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Department
Department
users.DepartmentDepartment records user’s department. It is needed to compare the returned department for individual Users rows and select rows with a specific Department value.- Enables: trace the department relationship returned in
Departmentfrom the Salesforce User row to its named Salesforce context. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row.
Digest Frequency
Digest Frequency
users.DigestFrequencyDigest Frequency records frequency of Chatter email digest. It is needed to distinguish Users rows by the exact Salesforce-returned digest frequency value.- Enables: separate Users rows by the exact Salesforce-returned
DigestFrequencylabel when comparing digest frequency. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Division
Division
users.DivisionDivision records user’s division. It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Users records by
Divisiononly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
Email
users.EmailEmail records user’s email address. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
Emailvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Contact.Emailscalar.
Email Encoding Key
Email Encoding Key
users.EmailEncodingKeyEmail Encoding Key records email encoding for outbound emails (e.g., UTF-8, ISO-8859-1). It is needed to refer to the same email encoding across records without relying on display text.- Enables: match
EmailEncodingKeyto email encoding references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Employee Number
Employee Number
users.EmployeeNumberEmployee Number records user’s employee number. It is needed to refer to the same employee number across records without relying on display text.- Enables: match
EmployeeNumberto employee number references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Extension
Extension
users.ExtensionExtension records user’s phone extension. It is needed to preserve the exact contact number or extension reported for the person represented by this row.- Enables: associate
Extensionwith the same Salesforce User identity and match the contact value only where it recurs exactly. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is Salesforce-reported contact data, not an account identifier or proof of current ownership.
Fax
Fax
users.FaxFax records user’s fax number. It is needed to preserve the exact Salesforce-reported contact number for the person, company, or location represented by this row.- Enables: match the exact contact number in
Faxto the same Salesforce User record without treating it as an account identifier. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Contact.PhoneNumberscalar.
Federation Identifier
Federation Identifier
users.FederationIdentifierFederation Identifier records federation ID for SSO (Single Sign-On). It is needed to refer to the same federation across records without relying on display text.- Enables: match
FederationIdentifierto federation references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
First Name
First Name
users.FirstNameFirst Name records user’s first name. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
FirstNamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Identity.Namescalar.
Forecast Enabled
Forecast Enabled
users.ForecastEnabledForecast Enabled records whether the user is enabled for forecasting. It is needed to distinguish Users rows by the exact Salesforce-returned forecast enabled value.- Enables: select Users rows where
ForecastEnabledis true or false when comparing the condition described by Forecast Enabled. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Full Photo URL
Full Photo URL
users.FullPhotoUrlFull Photo URL records URL of the user’s full-size profile photo. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
FullPhotoUrlwhile retaining the containing Users record as provenance. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is link at one Salesforce User record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
Geocode Accuracy
Geocode Accuracy
users.GeocodeAccuracyGeocode Accuracy records accuracy level of the geocode for the address. It is needed to qualify the accuracy level Salesforce reports for the sibling geocoded address.- Enables: interpret the sibling latitude and longitude using
GeocodeAccuracyas their Salesforce geocode-quality label. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; the label qualifies the sibling geocode at one record grain and does not establish residency or verified physical presence.
ID
ID
users.IdID records unique Salesforce identifier for the user. It is needed to distinguish repeated deliveries of the same Users row using the declared ingestion key.- Enables: use
Idas the declared ingestion deduplication key for Users and match repeated rows carrying the same Salesforce identifier. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity; the connector declares it as an ingestion deduplication key.
Individual ID
Individual ID
users.IndividualIdIndividual ID records ID of the associated Individual record for data privacy. It is needed to refer to the same individual across records without relying on display text.- Enables: match
IndividualIdto individual references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Is Active
Is Active
users.IsActiveIs Active records whether the user account is active. It is needed to distinguish Users rows by the exact Salesforce-returned is active value.- Enables: select Users rows where
IsActiveis true or false when comparing the condition described by Is Active. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Deleted
Is Deleted
users.IsDeletedIs Deleted records whether the record has been soft-deleted (available via queryAll). It is needed to distinguish Users rows by the exact Salesforce-returned is deleted value.- Enables: select Users rows where
IsDeletedis true or false when comparing the condition described by Is Deleted. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Ext Indicator Visible
Is Ext Indicator Visible
users.IsExtIndicatorVisibleIs Ext Indicator Visible records whether the external indicator is visible. It is needed to distinguish Users rows by the exact Salesforce-returned is ext indicator visible value.- Enables: select Users rows where
IsExtIndicatorVisibleis true or false when comparing the condition described by Is Ext Indicator Visible. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Is Profile Photo Active
Is Profile Photo Active
users.IsProfilePhotoActiveIs Profile Photo Active records whether the user has an active profile photo. It is needed to distinguish Users rows by the exact Salesforce-returned is profile photo active value.- Enables: select Users rows where
IsProfilePhotoActiveis true or false when comparing the condition described by Is Profile Photo Active. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Language Locale Key
Language Locale Key
users.LanguageLocaleKeyLanguage Locale Key records user’s language locale. It is needed to refer to the same language locale across records without relying on display text.- Enables: match
LanguageLocaleKeyto language locale references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity; the schema uses the
Localization.Localescalar.
Last Login Date
Last Login Date
users.LastLoginDateLast Login Date records timestamp of the user’s last login. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate the exact
LastLoginDateaccess value with the resource, account, or membership represented by the same Users row. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Temporal.DateTimescalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Last Modified By ID
Last Modified By ID
users.LastModifiedByIdLast Modified By ID records ID of the user who last modified this record. It is needed to refer to the same last modified by across records without relying on display text.- Enables: match
LastModifiedByIdto last modified by references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Last Modified Date
Last Modified Date
users.LastModifiedDateLast Modified Date records timestamp when the user was last modified by a user. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Users records by
LastModifiedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Temporal.DateTimescalar.
Last Name
Last Name
users.LastNameLast Name records user’s last name. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
LastNamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Identity.Namescalar.
Last Password Change Date
Last Password Change Date
users.LastPasswordChangeDateLast Password Change Date records timestamp of the user’s last password change. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate the exact
LastPasswordChangeDateaccess value with the resource, account, or membership represented by the same Users row. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Temporal.DateTimescalar; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
Last Referenced Date
Last Referenced Date
users.LastReferencedDateLast Referenced Date records timestamp when the user record was last referenced. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Users records by
LastReferencedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Temporal.DateTimescalar.
Last Viewed Date
Last Viewed Date
users.LastViewedDateLast Viewed Date records timestamp when the user record was last viewed. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Users records by
LastViewedDate, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Temporal.DateTimescalar.
Latitude
Latitude
users.LatitudeLatitude records latitude of the user’s address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
Latitudefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Locale Sid Key
Locale Sid Key
users.LocaleSidKeyLocale Sid Key records user’s locale setting. It is needed to refer to the same locale sid across records without relying on display text.- Enables: match
LocaleSidKeyto locale sid references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity; the schema uses the
Localization.Localescalar.
Longitude
Longitude
users.LongitudeLongitude records longitude of the user’s address. It is needed to preserve the Salesforce-reported geographic coordinate context for the same record.- Enables: compare the Salesforce-reported geographic coordinate context in
Longitudefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; its unit or granularity is provider-reported geographic coordinates; the value is geographic coordinate context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Manager ID
Manager ID
users.ManagerIdManager ID records ID of the user’s manager (self-referencing User). It is needed to refer to the same manager across records without relying on display text.- Enables: match
ManagerIdto manager references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Medium Banner Photo URL
Medium Banner Photo URL
users.MediumBannerPhotoUrlMedium Banner Photo URL records URL of the user’s medium banner photo. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
MediumBannerPhotoUrlwhile retaining the containing Users record as provenance. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is link at one Salesforce User record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
Medium Photo URL
Medium Photo URL
users.MediumPhotoUrlMedium Photo URL records URL of the user’s medium profile photo. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
MediumPhotoUrlwhile retaining the containing Users record as provenance. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is link at one Salesforce User record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
Middle Name
Middle Name
users.MiddleNameMiddle Name records user’s middle name. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
MiddleNamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row.
Mobile Phone
Mobile Phone
users.MobilePhoneMobile Phone records user’s mobile phone number. It is needed to preserve the exact Salesforce-reported contact number for the person, company, or location represented by this row.- Enables: match the exact contact number in
MobilePhoneto the same Salesforce User record without treating it as an account identifier. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Contact.PhoneNumberscalar.
Name
Name
users.NameName records user’s full display name. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
Namevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Identity.Namescalar.
Number Of Failed Logins
Number Of Failed Logins
users.NumberOfFailedLoginsNumber Of Failed Logins records number of failed login attempts. It is needed to measure the Salesforce-reported number of failed login attempts at one Salesforce User record per row.- Enables: measure and compare the Salesforce-reported number of failed login attempts in
NumberOfFailedLoginsat one Salesforce User record per row. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is a Salesforce-reported count at one Salesforce User record per row.
Out Of Office Message
Out Of Office Message
users.OutOfOfficeMessageOut Of Office Message records user’s out-of-office message. It is needed to inspect the exact message text included with this record.- Enables: inspect the message text returned in
OutOfOfficeMessageand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is message text at one Salesforce User record per row; this is only the content included in the Salesforce response for this record.
Phone
Phone
users.PhonePhone records user’s phone number. It is needed to preserve the exact Salesforce-reported contact number for the person, company, or location represented by this row.- Enables: match the exact contact number in
Phoneto the same Salesforce User record without treating it as an account identifier. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Contact.PhoneNumberscalar.
Postal Code
Postal Code
users.PostalCodePostal Code records postal or ZIP code of the user’s address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
PostalCodefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Profile ID
Profile ID
users.ProfileIdProfile ID records ID of the user’s profile. It is needed to refer to the same profile across records without relying on display text.- Enables: match
ProfileIdto profile references carrying the same Salesforce-issued value in related Salesforce records. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity.
Receives Admin Info Emails
Receives Admin Info Emails
users.ReceivesAdminInfoEmailsReceives Admin Info Emails records whether the user receives Salesforce admin informational emails. It is needed to distinguish Users rows by the exact Salesforce-returned receives admin info emails value.- Enables: select Users rows where
ReceivesAdminInfoEmailsis true or false when comparing the condition described by Receives Admin Info Emails. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Receives Info Emails
Receives Info Emails
users.ReceivesInfoEmailsReceives Info Emails records whether the user receives Salesforce informational emails. It is needed to distinguish Users rows by the exact Salesforce-returned receives info emails value.- Enables: select Users rows where
ReceivesInfoEmailsis true or false when comparing the condition described by Receives Info Emails. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
Sender Email
Sender Email
users.SenderEmailSender Email records email address used as the sender for outbound emails. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
SenderEmailvalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the schema uses the
Contact.Emailscalar.
Sender Name
Sender Name
users.SenderNameSender Name records name used as the sender for outbound emails. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
SenderNamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row.
Signature
Signature
users.SignatureSignature records user’s email signature. It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
Signaturevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row.
Small Banner Photo URL
Small Banner Photo URL
users.SmallBannerPhotoUrlSmall Banner Photo URL records URL of the user’s small banner photo. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
SmallBannerPhotoUrlwhile retaining the containing Users record as provenance. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is link at one Salesforce User record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
Small Photo URL
Small Photo URL
users.SmallPhotoUrlSmall Photo URL records URL of the user’s small profile photo. It is needed to inspect the exact link included with this record.- Enables: open or correlate the exact Salesforce resource referenced by
SmallPhotoUrlwhile retaining the containing Users record as provenance. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is link at one Salesforce User record per row; the schema uses the
Network.Urlscalar; the returned link or template does not establish that the current credential can retrieve its target.
State
State
users.StateState records state or province of the user’s address. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
Statefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
State Code
State Code
users.StateCodeState Code records ISO state/province code. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
StateCodefor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
Stay In Touch Note
Stay In Touch Note
users.StayInTouchNoteStay In Touch Note records note for Stay-in-Touch requests. It is needed to inspect the exact comment or journal text included with this record.- Enables: inspect the comment or journal text returned in
StayInTouchNoteand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is comment or journal text at one Salesforce User record per row; this is only the content included in the Salesforce response for this record.
Stay In Touch Signature
Stay In Touch Signature
users.StayInTouchSignatureStay In Touch Signature records signature for Stay-in-Touch requests. It is needed to preserve the exact signed material returned with Salesforce commit-verification metadata.- Enables: correlate
StayInTouchSignaturewith the sibling signature, payload, verification result, and commit SHA when investigating a signed revision. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; this is Salesforce-returned verification context and does not independently prove that a signature is valid.
Stay In Touch Subject
Stay In Touch Subject
users.StayInTouchSubjectStay In Touch Subject records default subject for Stay-in-Touch requests. It is needed to inspect the exact subject text returned for this Salesforce User record.- Enables: attribute the subject text in
StayInTouchSubjectto the containing Users identifier, owner or author, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; this is only the subject text included in the Salesforce response for this record.
Street
Street
users.StreetStreet records street address of the user. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
Streetfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Suffix
Suffix
users.SuffixSuffix records user’s name suffix (e.g., Jr., III). It is needed to preserve the exact Salesforce-reported business, directory, or identity attribute represented by this field.- Enables: match or segment Users records by
Suffixonly within the same Salesforce attribute contract. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is a Salesforce-returned or configured label and is not a universal identity or business taxonomy.
System Modstamp
System Modstamp
users.SystemModstampSystem Modstamp records system-maintained last modification timestamp used for incremental sync. It is needed to place the record at the time or date reported for this event or state.- Enables: bound Users records by
SystemModstamp, order their returned events or state changes, and correlate records reported at the same time. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the connector also declares it for record ordering; the schema assigns the
metadata_timestampsemantic role; the schema uses theTemporal.DateTimescalar.
Time Zone Sid Key
Time Zone Sid Key
users.TimeZoneSidKeyTime Zone Sid Key records user’s time zone setting (IANA identifier). It is needed to preserve the Salesforce-reported timezone or locale setting for the same record.- Enables: compare the Salesforce-reported timezone or locale setting in
TimeZoneSidKeyfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity; the schema uses the
Temporal.TimeZonescalar; the value is timezone or locale setting; this Salesforce-reported or configured context does not establish residency or verified physical presence.
Title
Title
users.TitleTitle records user’s job title. It is needed to preserve the business or job title reported for the person represented by this row.- Enables: select Users rows by the exact business or job title in
Titlewithout treating the title as an authorization role. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row.
User Name
User Name
users.UsernameUser Name records Salesforce login username (typically an email format). It is needed to attribute this Users row to the returned person, account, or organization reference.- Enables: attribute the Users row to the returned person or account and match the exact
Usernamevalue where it recurs in Salesforce. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row.
User Permissions Avantgo User
User Permissions Avantgo User
users.UserPermissionsAvantgoUserUser Permissions Avantgo User records whether the user has AvantGo (mobile) permissions. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsAvantgoUseraccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Permissions Call Center Auto Login
User Permissions Call Center Auto Login
users.UserPermissionsCallCenterAutoLoginUser Permissions Call Center Auto Login records whether the user auto-logs into the call center. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsCallCenterAutoLoginaccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Permissions Interaction User
User Permissions Interaction User
users.UserPermissionsInteractionUserUser Permissions Interaction User records whether the user has Interaction User permissions. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsInteractionUseraccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Permissions Jigsaw Prospecting User
User Permissions Jigsaw Prospecting User
users.UserPermissionsJigsawProspectingUserUser Permissions Jigsaw Prospecting User records whether the user has Data.com Prospecting permissions. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsJigsawProspectingUseraccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Permissions Knowledge User
User Permissions Knowledge User
users.UserPermissionsKnowledgeUserUser Permissions Knowledge User records whether the user has Knowledge User permissions. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsKnowledgeUseraccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Permissions Marketing User
User Permissions Marketing User
users.UserPermissionsMarketingUserUser Permissions Marketing User records whether the user has Marketing User permissions. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsMarketingUseraccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Permissions Offline User
User Permissions Offline User
users.UserPermissionsOfflineUserUser Permissions Offline User records whether the user has Offline User permissions. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsOfflineUseraccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Permissions SF Content User
User Permissions SF Content User
users.UserPermissionsSFContentUserUser Permissions SF Content User records whether the user has Salesforce CRM Content permissions. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsSFContentUseraccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Permissions Support User
User Permissions Support User
users.UserPermissionsSupportUserUser Permissions Support User records whether the user has Support User permissions. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: select Users rows with the exact
UserPermissionsSupportUseraccess-related value being investigated. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; use it for investigation and evidence correlation; it does not prove that all activity or access is represented; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Activity Reminders Popup
User Preferences Activity Reminders Popup
users.UserPreferencesActivityRemindersPopupUser Preferences Activity Reminders Popup records user preference for activity reminder popups. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences activity reminders popup value.- Enables: select Users rows where
UserPreferencesActivityRemindersPopupis true or false when comparing the condition described by User Preferences Activity Reminders Popup. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable All Feeds Email
User Preferences Disable All Feeds Email
users.UserPreferencesDisableAllFeedsEmailUser Preferences Disable All Feeds Email records whether all Chatter feed emails are disabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences disable all feeds email value.- Enables: select Users rows where
UserPreferencesDisableAllFeedsEmailis true or false when comparing the condition described by User Preferences Disable All Feeds Email. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable Bookmark Email
User Preferences Disable Bookmark Email
users.UserPreferencesDisableBookmarkEmailUser Preferences Disable Bookmark Email records whether bookmark notification emails are disabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences disable bookmark email value.- Enables: select Users rows where
UserPreferencesDisableBookmarkEmailis true or false when comparing the condition described by User Preferences Disable Bookmark Email. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable Change Comment Email
User Preferences Disable Change Comment Email
users.UserPreferencesDisableChangeCommentEmailUser Preferences Disable Change Comment Email records whether change comment notification emails are disabled. It is needed to inspect the exact comment or journal text included with this record.- Enables: inspect the comment or journal text returned in
UserPreferencesDisableChangeCommentEmailand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is comment or journal text at one Salesforce User record per row; this is only the content included in the Salesforce response for this record; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable File Share Notifications For API
User Preferences Disable File Share Notifications For API
users.UserPreferencesDisableFileShareNotificationsForApiUser Preferences Disable File Share Notifications For API records whether file share notifications for API are disabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences disable file share notifications for api value.- Enables: select Users rows where
UserPreferencesDisableFileShareNotificationsForApiis true or false when comparing the condition described by User Preferences Disable File Share Notifications For API. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable Followers Email
User Preferences Disable Followers Email
users.UserPreferencesDisableFollowersEmailUser Preferences Disable Followers Email records whether follower notification emails are disabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences disable followers email value.- Enables: select Users rows where
UserPreferencesDisableFollowersEmailis true or false when comparing the condition described by User Preferences Disable Followers Email. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable Later Comment Email
User Preferences Disable Later Comment Email
users.UserPreferencesDisableLaterCommentEmailUser Preferences Disable Later Comment Email records whether later comment notification emails are disabled. It is needed to inspect the exact comment or journal text included with this record.- Enables: inspect the comment or journal text returned in
UserPreferencesDisableLaterCommentEmailand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is comment or journal text at one Salesforce User record per row; this is only the content included in the Salesforce response for this record; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable Like Email
User Preferences Disable Like Email
users.UserPreferencesDisableLikeEmailUser Preferences Disable Like Email records whether like notification emails are disabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences disable like email value.- Enables: select Users rows where
UserPreferencesDisableLikeEmailis true or false when comparing the condition described by User Preferences Disable Like Email. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable Mentions Post Email
User Preferences Disable Mentions Post Email
users.UserPreferencesDisableMentionsPostEmailUser Preferences Disable Mentions Post Email records whether mention notification emails are disabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences disable mentions post email value.- Enables: select Users rows where
UserPreferencesDisableMentionsPostEmailis true or false when comparing the condition described by User Preferences Disable Mentions Post Email. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable Profile Post Email
User Preferences Disable Profile Post Email
users.UserPreferencesDisableProfilePostEmailUser Preferences Disable Profile Post Email records whether profile post notification emails are disabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences disable profile post email value.- Enables: select Users rows where
UserPreferencesDisableProfilePostEmailis true or false when comparing the condition described by User Preferences Disable Profile Post Email. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Disable Share Post Email
User Preferences Disable Share Post Email
users.UserPreferencesDisableSharePostEmailUser Preferences Disable Share Post Email records whether share post notification emails are disabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences disable share post email value.- Enables: select Users rows where
UserPreferencesDisableSharePostEmailis true or false when comparing the condition described by User Preferences Disable Share Post Email. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Dis Comment After Like Email
User Preferences Dis Comment After Like Email
users.UserPreferencesDisCommentAfterLikeEmailUser Preferences Dis Comment After Like Email records whether comment-after-like notification emails are disabled. It is needed to inspect the exact comment or journal text included with this record.- Enables: inspect the comment or journal text returned in
UserPreferencesDisCommentAfterLikeEmailand attribute it to the same record’s parent record, owner, status, and update time where returned. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is comment or journal text at one Salesforce User record per row; this is only the content included in the Salesforce response for this record; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Enable Auto Sub For Feeds
User Preferences Enable Auto Sub For Feeds
users.UserPreferencesEnableAutoSubForFeedsUser Preferences Enable Auto Sub For Feeds records whether auto-subscription for feeds is enabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences enable auto sub for feeds value.- Enables: select Users rows where
UserPreferencesEnableAutoSubForFeedsis true or false when comparing the condition described by User Preferences Enable Auto Sub For Feeds. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Event Reminders Checkbox Default
User Preferences Event Reminders Checkbox Default
users.UserPreferencesEventRemindersCheckboxDefaultUser Preferences Event Reminders Checkbox Default records default checkbox state for event reminders. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences event reminders checkbox default value.- Enables: select Users rows where
UserPreferencesEventRemindersCheckboxDefaultis true or false when comparing the condition described by User Preferences Event Reminders Checkbox Default. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide Bigger Photo Callout
User Preferences Hide Bigger Photo Callout
users.UserPreferencesHideBiggerPhotoCalloutUser Preferences Hide Bigger Photo Callout records whether the bigger photo callout is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide bigger photo callout value.- Enables: select Users rows where
UserPreferencesHideBiggerPhotoCalloutis true or false when comparing the condition described by User Preferences Hide Bigger Photo Callout. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide Bolt Migration Modal
User Preferences Hide Bolt Migration Modal
users.UserPreferencesHideBoltMigrationModalUser Preferences Hide Bolt Migration Modal records whether the Bolt migration modal is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide bolt migration modal value.- Enables: select Users rows where
UserPreferencesHideBoltMigrationModalis true or false when comparing the condition described by User Preferences Hide Bolt Migration Modal. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide Chatter Onboarding Splash
User Preferences Hide Chatter Onboarding Splash
users.UserPreferencesHideChatterOnboardingSplashUser Preferences Hide Chatter Onboarding Splash records whether the Chatter onboarding splash is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide chatter onboarding splash value.- Enables: select Users rows where
UserPreferencesHideChatterOnboardingSplashis true or false when comparing the condition described by User Preferences Hide Chatter Onboarding Splash. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide CSN Desktop Task
User Preferences Hide CSN Desktop Task
users.UserPreferencesHideCSNDesktopTaskUser Preferences Hide CSN Desktop Task records whether the Chatter desktop task is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide csn desktop task value.- Enables: select Users rows where
UserPreferencesHideCSNDesktopTaskis true or false when comparing the condition described by User Preferences Hide CSN Desktop Task. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide CSN Get Chatter Mobile Task
User Preferences Hide CSN Get Chatter Mobile Task
users.UserPreferencesHideCSNGetChatterMobileTaskUser Preferences Hide CSN Get Chatter Mobile Task records whether the Get Chatter Mobile task is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide csn get chatter mobile task value.- Enables: select Users rows where
UserPreferencesHideCSNGetChatterMobileTaskis true or false when comparing the condition described by User Preferences Hide CSN Get Chatter Mobile Task. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide End User Onboarding Assistant Modal
User Preferences Hide End User Onboarding Assistant Modal
users.UserPreferencesHideEndUserOnboardingAssistantModalUser Preferences Hide End User Onboarding Assistant Modal records whether the end user onboarding assistant modal is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide end user onboarding assistant modal value.- Enables: select Users rows where
UserPreferencesHideEndUserOnboardingAssistantModalis true or false when comparing the condition described by User Preferences Hide End User Onboarding Assistant Modal. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide Lightning Migration Modal
User Preferences Hide Lightning Migration Modal
users.UserPreferencesHideLightningMigrationModalUser Preferences Hide Lightning Migration Modal records whether the Lightning migration modal is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide lightning migration modal value.- Enables: select Users rows where
UserPreferencesHideLightningMigrationModalis true or false when comparing the condition described by User Preferences Hide Lightning Migration Modal. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide S1 Browser UI
User Preferences Hide S1 Browser UI
users.UserPreferencesHideS1BrowserUIUser Preferences Hide S1 Browser UI records whether the Salesforce1 browser UI is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide s1 browser ui value.- Enables: select Users rows where
UserPreferencesHideS1BrowserUIis true or false when comparing the condition described by User Preferences Hide S1 Browser UI. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide Second Chatter Onboarding Splash
User Preferences Hide Second Chatter Onboarding Splash
users.UserPreferencesHideSecondChatterOnboardingSplashUser Preferences Hide Second Chatter Onboarding Splash records whether the second Chatter onboarding splash is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide second chatter onboarding splash value.- Enables: select Users rows where
UserPreferencesHideSecondChatterOnboardingSplashis true or false when comparing the condition described by User Preferences Hide Second Chatter Onboarding Splash. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Hide Sfx Welcome Mat
User Preferences Hide Sfx Welcome Mat
users.UserPreferencesHideSfxWelcomeMatUser Preferences Hide Sfx Welcome Mat records whether the SFX welcome mat is hidden. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences hide sfx welcome mat value.- Enables: select Users rows where
UserPreferencesHideSfxWelcomeMatis true or false when comparing the condition described by User Preferences Hide Sfx Welcome Mat. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Lightning Experience Preferred
User Preferences Lightning Experience Preferred
users.UserPreferencesLightningExperiencePreferredUser Preferences Lightning Experience Preferred records whether Lightning Experience is the preferred UI. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences lightning experience preferred value.- Enables: select Users rows where
UserPreferencesLightningExperiencePreferredis true or false when comparing the condition described by User Preferences Lightning Experience Preferred. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Native Email Client
User Preferences Native Email Client
users.UserPreferencesNativeEmailClientUser Preferences Native Email Client records whether the native email client is preferred. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences native email client value.- Enables: select Users rows where
UserPreferencesNativeEmailClientis true or false when comparing the condition described by User Preferences Native Email Client. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Preview Lightning
User Preferences Preview Lightning
users.UserPreferencesPreviewLightningUser Preferences Preview Lightning records whether Lightning preview is enabled. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences preview lightning value.- Enables: select Users rows where
UserPreferencesPreviewLightningis true or false when comparing the condition described by User Preferences Preview Lightning. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show City To External Users
User Preferences Show City To External Users
users.UserPreferencesShowCityToExternalUsersUser Preferences Show City To External Users records whether the city is shown to external users. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
UserPreferencesShowCityToExternalUsersfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show City To Guest Users
User Preferences Show City To Guest Users
users.UserPreferencesShowCityToGuestUsersUser Preferences Show City To Guest Users records whether the city is shown to guest users. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
UserPreferencesShowCityToGuestUsersfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Country To External Users
User Preferences Show Country To External Users
users.UserPreferencesShowCountryToExternalUsersUser Preferences Show Country To External Users records whether the country is shown to external users. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
UserPreferencesShowCountryToExternalUsersfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Country To Guest Users
User Preferences Show Country To Guest Users
users.UserPreferencesShowCountryToGuestUsersUser Preferences Show Country To Guest Users records whether the country is shown to guest users. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
UserPreferencesShowCountryToGuestUsersfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Email To External Users
User Preferences Show Email To External Users
users.UserPreferencesShowEmailToExternalUsersUser Preferences Show Email To External Users records whether the email is shown to external users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show email to external users value.- Enables: select Users rows where
UserPreferencesShowEmailToExternalUsersis true or false when comparing the condition described by User Preferences Show Email To External Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Fax To External Users
User Preferences Show Fax To External Users
users.UserPreferencesShowFaxToExternalUsersUser Preferences Show Fax To External Users records whether the fax is shown to external users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show fax to external users value.- Enables: select Users rows where
UserPreferencesShowFaxToExternalUsersis true or false when comparing the condition described by User Preferences Show Fax To External Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Forecasting Change Signals
User Preferences Show Forecasting Change Signals
users.UserPreferencesShowForecastingChangeSignalsUser Preferences Show Forecasting Change Signals records whether forecasting change signals are shown. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show forecasting change signals value.- Enables: select Users rows where
UserPreferencesShowForecastingChangeSignalsis true or false when comparing the condition described by User Preferences Show Forecasting Change Signals. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Manager To External Users
User Preferences Show Manager To External Users
users.UserPreferencesShowManagerToExternalUsersUser Preferences Show Manager To External Users records whether the manager is shown to external users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show manager to external users value.- Enables: select Users rows where
UserPreferencesShowManagerToExternalUsersis true or false when comparing the condition described by User Preferences Show Manager To External Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Mobile Phone To External Users
User Preferences Show Mobile Phone To External Users
users.UserPreferencesShowMobilePhoneToExternalUsersUser Preferences Show Mobile Phone To External Users records whether the mobile phone is shown to external users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show mobile phone to external users value.- Enables: select Users rows where
UserPreferencesShowMobilePhoneToExternalUsersis true or false when comparing the condition described by User Preferences Show Mobile Phone To External Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Postal Code To External Users
User Preferences Show Postal Code To External Users
users.UserPreferencesShowPostalCodeToExternalUsersUser Preferences Show Postal Code To External Users records whether the postal code is shown to external users. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
UserPreferencesShowPostalCodeToExternalUsersfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Postal Code To Guest Users
User Preferences Show Postal Code To Guest Users
users.UserPreferencesShowPostalCodeToGuestUsersUser Preferences Show Postal Code To Guest Users records whether the postal code is shown to guest users. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
UserPreferencesShowPostalCodeToGuestUsersfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Profile Pic To Guest Users
User Preferences Show Profile Pic To Guest Users
users.UserPreferencesShowProfilePicToGuestUsersUser Preferences Show Profile Pic To Guest Users records whether the profile picture is shown to guest users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show profile pic to guest users value.- Enables: select Users rows where
UserPreferencesShowProfilePicToGuestUsersis true or false when comparing the condition described by User Preferences Show Profile Pic To Guest Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show State To External Users
User Preferences Show State To External Users
users.UserPreferencesShowStateToExternalUsersUser Preferences Show State To External Users records whether the state is shown to external users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show state to external users value.- Enables: select Users rows where
UserPreferencesShowStateToExternalUsersis true or false when comparing the condition described by User Preferences Show State To External Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show State To Guest Users
User Preferences Show State To Guest Users
users.UserPreferencesShowStateToGuestUsersUser Preferences Show State To Guest Users records whether the state is shown to guest users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show state to guest users value.- Enables: select Users rows where
UserPreferencesShowStateToGuestUsersis true or false when comparing the condition described by User Preferences Show State To Guest Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Street Address To External Users
User Preferences Show Street Address To External Users
users.UserPreferencesShowStreetAddressToExternalUsersUser Preferences Show Street Address To External Users records whether the street address is shown to external users. It is needed to preserve the Salesforce-reported configured or derived address and place context for the same record.- Enables: compare the Salesforce-reported configured or derived address and place context in
UserPreferencesShowStreetAddressToExternalUsersfor individual Users rows without treating it as a verified physical location. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; the value is configured or derived address and place context; this Salesforce-reported or configured context does not establish residency or verified physical presence; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Title To External Users
User Preferences Show Title To External Users
users.UserPreferencesShowTitleToExternalUsersUser Preferences Show Title To External Users records whether the title is shown to external users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show title to external users value.- Enables: select Users rows where
UserPreferencesShowTitleToExternalUsersis true or false when comparing the condition described by User Preferences Show Title To External Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Title To Guest Users
User Preferences Show Title To Guest Users
users.UserPreferencesShowTitleToGuestUsersUser Preferences Show Title To Guest Users records whether the title is shown to guest users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show title to guest users value.- Enables: select Users rows where
UserPreferencesShowTitleToGuestUsersis true or false when comparing the condition described by User Preferences Show Title To Guest Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Show Work Phone To External Users
User Preferences Show Work Phone To External Users
users.UserPreferencesShowWorkPhoneToExternalUsersUser Preferences Show Work Phone To External Users records whether the work phone is shown to external users. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences show work phone to external users value.- Enables: select Users rows where
UserPreferencesShowWorkPhoneToExternalUsersis true or false when comparing the condition described by User Preferences Show Work Phone To External Users. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Preferences Task Reminders Checkbox Default
User Preferences Task Reminders Checkbox Default
users.UserPreferencesTaskRemindersCheckboxDefaultUser Preferences Task Reminders Checkbox Default records default checkbox state for task reminders. It is needed to distinguish Users rows by the exact Salesforce-returned user preferences task reminders checkbox default value.- Enables: select Users rows where
UserPreferencesTaskRemindersCheckboxDefaultis true or false when comparing the condition described by User Preferences Task Reminders Checkbox Default. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
User Role ID
User Role ID
users.UserRoleIdUser Role ID records ID of the user’s role in the role hierarchy. It is needed to correlate the returned access or audit evidence with the subject and action represented by the same record.- Enables: correlate the exact
UserRoleIdaccess value with the resource, account, or membership represented by the same Users row. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is an identifier, not a measured quantity; use it for investigation and evidence correlation; it does not prove that all activity or access is represented.
User Type
User Type
users.UserTypeUser Type records type of user license. It is needed to distinguish Users rows by the exact Salesforce-returned user type value.- Enables: separate Users rows by the exact Salesforce-returned
UserTypelabel when comparing user type. - Interpretation: Salesforce reports this value on the Salesforce User object returned for Users; it is interpreted at one Salesforce User record per row; classification values are Salesforce-returned labels rather than a universal taxonomy.
| Error | Meaning | Solution |
|---|---|---|
INVALID_CLIENT_ID | Wrong Consumer Key | Verify Client ID from Connected App |
INVALID_CLIENT | Client credentials flow not enabled | Enable “Client Credentials Flow” in app policies |
INACTIVE_USER | Run As user deactivated | Ensure the Run As integration user is active |
API_CURRENTLY_DISABLED | API not enabled | Contact Salesforce admin to enable API |
Common Issues
”Connected App not yet available”
Newly created Connected Apps can take up to 10 minutes to become active. Wait and retry.”unsupported_grant_type”
Parable posts to your My Domain URL (https://your-org.my.salesforce.com/services/oauth2/token). Verify My Domain is enabled on your org and that you provided the correct subdomain to Parable. (Salesforce also supports login.salesforce.com for this flow, but Parable does not use it.)