Skip to content

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.

Managed App Schema Builder app integer

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:

Jamf Pro integer 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...

integer (from list)

Clone this wiki locally