-
Notifications
You must be signed in to change notification settings - Fork 7
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.

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:

With values added:

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...
Managed App Schema Builder is licensed by Leslie Helou under The MIT License