mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-07-30 03:09:50 +08:00
55 lines
2.0 KiB
JSON
55 lines
2.0 KiB
JSON
{
|
||
"sections": [
|
||
"title",
|
||
"description",
|
||
"file_information",
|
||
"directory_location",
|
||
"fields",
|
||
"declarative_metadata_sample_definition"
|
||
],
|
||
"title": "ActivationPlatformField - Metadata API",
|
||
"description": "Represents the information about the fields used in ActivationPlatform.",
|
||
"file_information": ".activationPlatformField",
|
||
"directory_location": "activationPlatformFields",
|
||
"fields_columns": [
|
||
"type",
|
||
"required",
|
||
"description"
|
||
],
|
||
"fields": {
|
||
"activationPlatform": {
|
||
"type": "string",
|
||
"required": true,
|
||
"description": "Reference to the ActivationPlatform metadata type."
|
||
},
|
||
"helpText": {
|
||
"type": "string",
|
||
"description": "Information about ActivationPlatformField."
|
||
},
|
||
"isHidden": {
|
||
"type": "boolean",
|
||
"required": true,
|
||
"description": "Indicates whether ActivationPlatformField can be overridden by marketer (false) or not (true). The default is false. Field can’t be overridden by marketer when set to true."
|
||
},
|
||
"isRequired": {
|
||
"type": "boolean",
|
||
"required": true,
|
||
"description": "Indicates whether this ActivationPlatformField is required (true) or not (false). The default is false."
|
||
},
|
||
"masterLabel": {
|
||
"type": "string",
|
||
"required": true,
|
||
"description": "The name of the ActivationPlaformField."
|
||
},
|
||
"type": {
|
||
"type": "ActivationPlatformFieldDataType (enumeration of type string)",
|
||
"description": "Represents the datatype of the field.Valid value is: Text"
|
||
}
|
||
},
|
||
"declarative_metadata_sample_definition": [
|
||
{
|
||
"description": "The following is an example of an ActivationPlatformField component.",
|
||
"code": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ActivationPlatformField xmlns=\"http://soap.sforce.com/2006/04/metadata\">\n <activationPlatform>APlatform</activationPlatform>\n <isHidden>false</isHidden>\n <isRequired>true</isRequired>\n <masterLabel>AccountId</masterLabel>\n</ActivationPlatformField>"
|
||
}
|
||
]
|
||
} |