Skip to content

Configuration Profile Layout

Configuration profiles are XML files in Apple’s property list (plist) format. Understanding the structure helps you troubleshoot profiles or make manual adjustments.


A configuration profile has two main parts:

SectionDescription
Profile-level keysMetadata about the profile itself (name, organization, UUID)
PayloadContentArray of payloads containing the actual settings

These keys describe the profile:

KeyDescription
PayloadDisplayNameName shown in System Settings
PayloadDescriptionDescription of the profile’s purpose
PayloadIdentifierUnique identifier for the profile
PayloadOrganizationOrganization that created the profile
PayloadUUIDUnique UUID for this profile
PayloadVersionVersion number (usually 1)
PayloadTypeAlways Configuration for profiles
PayloadScopeSystem or User
ConsentTextTerms displayed before installation

The PayloadContent array contains one or more payloads. Each payload configures a specific feature or preference domain.

Each payload includes:

KeyDescription
PayloadTypeThe preference domain (e.g., com.apple.screensaver)
PayloadIdentifierUnique identifier for this payload
PayloadUUIDUnique UUID for this payload
PayloadVersionVersion number
(settings)Domain-specific keys and values

This payload configures screensaver settings:

KeyValueDescription
PayloadTypecom.apple.screensaverThe preference domain
askForPasswordtrueRequire password to unlock
askForPasswordDelay5Seconds before password required
idleTime1200Seconds before screensaver starts

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ConsentText</key>
<dict>
<key>default</key>
<string>THE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND FREEDOM FROM INFRINGEMENT, AND ANY WARRANTY THAT THE DOCUMENTATION WILL CONFORM TO THE SOFTWARE, OR ANY WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE. IN NO EVENT SHALL NIST BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM, OR IN ANY WAY CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY, CONTRACT, TORT, OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR PROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT OF THE RESULTS OF, OR USE OF, THE SOFTWARE OR SERVICES PROVIDED HEREUNDER.</string>
</dict>
<key>PayloadContent</key>
<array>
<dict>
<key>PayloadIdentifier</key>
<string>alacarte.macOS.all_rules.4413990e-a57b-4e0e-8902-59f780718b1c</string>
<key>PayloadType</key>
<string>com.apple.screensaver</string>
<key>PayloadUUID</key>
<string>4413990e-a57b-4e0e-8902-59f780718b1c</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>askForPassword</key>
<true/>
<key>askForPasswordDelay</key>
<integer>5</integer>
<key>idleTime</key>
<integer>1200</integer>
<key>loginWindowIdleTime</key>
<integer>1200</integer>
<key>moduleName</key>
<string>Sequoia</string>
</dict>
</array>
<key>PayloadDescription</key>
<string>Created: 2025-07-23
Configuration settings for the com.apple.screensaver preference domain.</string>
<key>PayloadDisplayName</key>
<string>[all_rules] com.apple.screensaver settings</string>
<key>PayloadIdentifier</key>
<string>com.apple.screensaver.all_rules</string>
<key>PayloadOrganization</key>
<string>macOS Security Compliance Project</string>
<key>PayloadScope</key>
<string>System</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>8e4caf27-a378-4fca-b753-a87d8123636b</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</plist>