afv-library/skills/getting-metadata-api-context/data/metadata_api/RecordPageSettings.json

40 lines
1.9 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"sections": [
"title",
"description",
"file_information",
"directory_location",
"fields",
"wsdl_segment",
"declarative_metadata_sample_definition"
],
"title": "RecordPageSettings - Metadata API",
"description": "Represents an orgs record page settings. This type extends the Metadata metadata type and inherits its fullName field.",
"file_information": ".settings",
"directory_location": "settings",
"fields_columns": [
"type",
"description"
],
"fields": {
"enableActivityRelatedList": {
"type": "boolean",
"description": "Indicates whether the default activities view is related lists (true) or activity timeline (false)."
},
"enableDynamicForms": {
"type": "boolean",
"description": "Indicates whether Dynamic Forms is enabled for the org. Removed in API version 50.0 and later."
},
"enableFullRecordView": {
"type": "boolean",
"description": "Indicates whether the default record page view is full view (true) or grouped view (false)."
}
},
"wsdl_segment": "```xml\n<xsd:complexType name=\"RecordPageSettings\">\n <xsd:complexContent>\n <xsd:extension base=\"tns:Metadata\">\n <xsd:sequence>\n <xsd:element name=\"enableActivityRelatedList\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n <xsd:element name=\"enableFullRecordView\" minOccurs=\"0\" type=\"xsd:boolean\"/>\n </xsd:sequence>\n </xsd:extension>\n </xsd:complexContent>\n</xsd:complexType>\n```",
"declarative_metadata_sample_definition": [
{
"description": "This is a sample recordpage.settings metadata file.",
"code": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<RecordPageSettings xmlns=\"http://soap.sforce.com/2006/04/metadata\">\n <enableDynamicForms>true</enableDynamicForms>\n <enableActivityRelatedList>true</enableActivityRelatedList>\n <enableFullRecordView>true</enableFullRecordView>\n</RecordPageSettings>"
}
]
}