CareProviderSearchConfig
Represents the information about the fields that appear in
care provider search results. This type extends the Metadata
metadata type and inherits its fullName field.
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>