Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
CareProviderSearchConfig
File Suffix and Directory Location
CareProviderSearchConfig components have the suffix .careProviderSearchConfig and are stored in the careProviderSearchConfigs folder.
Version
CareProviderSearchConfig components are available in API version 48.0 and later.
Fields
Declarative Metadata Sample Definition
The following is an example of a CareProviderSearchConfig component.
1<?xml version="1.0" encoding="UTF-8"?>
2<CareProviderSearchConfig xmlns="http://soap.sforce.com/2006/04/metadata">
3 <sourceField>Test1__c</sourceField>
4 <targetField>Test1__c</targetField>
5 <mappedObject>HealthcareProvider</mappedObject>
6 <isProtected>false</isProtected>
7 <isActive>true</isActive>
8 <masterLabel>testlabel</masterLabel>
9</CareProviderSearchConfig>The following is an example package.xml that references the previous definition.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>HealthcareProvider.Test1__c</members>
5 <name>CustomField</name>
6 </types>
7 <types>
8 <members>CareProviderSearchableField.Test1__c</members>
9 <name>CustomField</name>
10 </types>
11 <types>
12 <members>Test</members>
13 <name>CareProviderSearchConfig</name>
14 </types>
15 <version>48.0</version>
16</Package>