Skip to content

integer array

leslie helou edited this page Sep 28, 2025 · 4 revisions

Allows admins to build a list of integers for use in the application.

Managed App Schema Builder app integer array

A manifest for an app would include the following:

"points": {
	"title": "current points",
	"description": "points",
	"property_order": 35,
	"type": "array",
	"items": {
		"type": "integer",
		"title": "point value"
	},
	"options": {
		"infoText": "current points in the game"
	},
	"links": [
		{
			"rel": "Tennis Scoring",
			"href": "https://www.usta.com/en/home/improve/tips-and-instruction/national/tennis-scoring-rules.html"
		}
	]
}

Initially Jamf Pro will display:

Jamf Pro initial array

With values added:

Jamf Pro initial array

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>points</key>
	<array>
		<integer>0</integer>
		<integer>15</integer>
		<integer>30</integer>
		<integer>40</integer>
	</array>
  </dict>
</plist>

For additional schema formats, continue to...

string

Clone this wiki locally