-
Notifications
You must be signed in to change notification settings - Fork 7
boolean
leslie helou edited this page Sep 28, 2025
·
4 revisions
A boolean allows admins to specify a setting as either true or false.

A manifest boolean for a fictional app called Disk Manager includes the following:
"askForPassword": {
"title": "Ask for Password",
"description": "whether or not to ask for a password",
"default": true,
"property_order": 20,
"type": "boolean",
"options": {
"infoText": "set to true if specifying a password delay"
},
"links": [
{
"rel": "additional info",
"href": "https://www.diskmanager.info"
}
]
}
Jamf Pro will display:

This generates the XML equivalent of:
<?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>askForPassword</key>
<true/>
</dict>
</plist>
For additional schema formats, continue to...
Managed App Schema Builder is licensed by Leslie Helou under The MIT License