-
Notifications
You must be signed in to change notification settings - Fork 7
integer
leslie helou edited this page Sep 28, 2025
·
9 revisions
An integer allows admins to type a whole number into a field to specify a setting.

A manifest integer for a fictional app called Disk Manager includes the following:
"DiskCacheSize": {
"title": "Disk Cache Size",
"description": "Size of the disk cache",
"default": 25600,
"property_order": 5,
"type": "integer",
"options": {
"infoText": "size in bytes"
},
"links": [
{
"rel": "covert to bytes",
"href": "http://www.converttobytes.com"
}
]
}
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>diskCacheSize</key>
<integer>25600</integer>
</dict>
</plist>
For additional schema formats, continue to...
Managed App Schema Builder is licensed by Leslie Helou under The MIT License
