Newer Version Available
ExplainabilityActionDefinition
Represents the definition of the explainability
action log that is generated by the associated application's action.
Parent Type
This type extends the Metadata metadata type and inherits its
fullName field.
File Suffix and Directory Location
ExplainabilityActionDefinition components have the suffix .explainabilityActionDefinition and are stored in the explainabilityActionDefinition folder.
Version
ExplainabilityActionDefinition components are available in API version 57.0 and later.
Fields
| Field Name | Description |
|---|---|
| actionLogSchemaType |
|
| applicationSubtype |
|
| applicationType |
|
| description |
|
| internal |
|
| masterLabel |
|
| processType |
|
Declarative Metadata Sample Definition
The following is an example of an ExplainabilityActionDefinition component.
1<?xml version="1.0" encoding="UTF-8"?>
2
3<ExplainabilityActionDefinition
4 xmlns="http://soap.sforce.com/2006/04/metadata">
5 <masterLabel>ActionDefinition1</masterLabel>
6 <description>Action Definition 1</description>
7 <applicationType>PublicSector</applicationType>
8 <applicationSubtype>testType</applicationSubtype>
9 <processType>testType</processType>
10 <actionLogSchemaType>ExpressionSet</actionLogSchemaType>
11 <internal>true</internal>
12</ExplainabilityActionDefinition>The following is an example package.xml that references
the previous
definition.
1<?xml version="1.0" encoding="UTF-8"?>
2
3<Package
4 xmlns="http://soap.sforce.com/2006/04/metadata">
5 <types>
6 <members>*</members>
7 <name>ApplicationSubtypeDefinition</name>
8 </types>
9 <types>
10 <members>*</members>
11 <name>BusinessProcessTypeDefinition</name>
12 </types>
13 <types>
14 <members>*</members>
15 <name>ExplainabilityActionDefinition</name>
16 </types>
17 <version>57.0</version>
18</Package>