Newer Version Available

This content describes an older version of this product. View Latest

BusinessProcessTypeDefinition

Represents the definition of the business process type within an application domain.

Where possible, we changed noninclusive terms to align with our company value of Equality. We maintained certain terms to avoid any effect on customer implementations.

Important

Parent Type

This type extends the Metadata metadata type and inherits its fullName field.

File Suffix and Directory Location

BusinessProcessTypeDefinition components have the suffix .businessProcessTypeDefinition and are stored in the businessProcessTypeDefinition folder.

Version

BusinessProcessTypeDefinition components are available in API version 57.0 and later.

Fields

Field Name Description
applicationUsageType
Field Type
AppDomainUsageType (enumeration of type string)
Description

Required.

The application's domain that defines the business process type definition.

Possible value:

  • ExplainabilityService
description
Field Type
string
Description
The description of the business process type definition.
masterLabel
Field Type
string
Description

Required.

A user-friendly name for BusinessProcessTypeDefinition, which is defined when the BusinessProcessTypeDefinition is created.

Declarative Metadata Sample Definition

The following is an example of a BusinessProcessTypeDefinition component.

1<?xml version="1.0" encoding="UTF-8"?>
2
3<BusinessProcessTypeDefinition
4	xmlns="http://soap.sforce.com/2006/04/metadata">
5	<masterLabel>ProcessType1</masterLabel>
6	<description>Process Type 1</description>
7	<applicationUsageType>ExplainabilityService</applicationUsageType>
8</BusinessProcessTypeDefinition>
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>BusinessProcessTypeDefinition</name>
8	</types>
9	<version>57.0</version>
10</Package>

Wildcard Support in the Manifest File

This metadata type supports the wildcard character * (asterisk) in the package.xml manifest file. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.