Jamf manifests support the links keyword to display a hyperlink in embedded text. This is useful for referring to external documentation about a specific item.
Here’s a basic property:
{
"title": "Disk Manager (com.company.diskmanager)",
"description": "Preference settings for the fictitious Disk Manager application. This manifest demonstrates different ways to format the appearance or value of properties as well as include useful options like infoText. Jamf Pro supports many but not all elements and options here: https://github.com/json-editor/json-editor.",
"properties": {
"askForPassword": {
"title": "Ask For Password",
"description": "Set Disk Manager application to require a password.",
"property_order": 25,
"type": "boolean"
}
}
}
Here’s the same property with the links keyword.
{
"title": "Disk Manager (com.company.diskmanager)",
"description": "Preference settings for the fictitious Disk Manager application. This manifest demonstrates different ways to format the appearance or value of properties as well as include useful options like infoText. Jamf Pro supports many but not all elements and options here: https://github.com/json-editor/json-editor.",
"properties": {
"askForPassword": {
"title": "Ask For Password",
"description": "Set Disk Manager application to require a password.",
"property_order": 25,
"type": "boolean",
"links": [
{
"rel": "More information",
"href": "https://json-schema.org/understanding-json-schema/reference/type.html"
}
]
}
}
}
This change applies to all property types not just boolean.

Jamf manifests support the links keyword to display a hyperlink in embedded text. This is useful for referring to external documentation about a specific item.
Here’s a basic property:
Here’s the same property with the links keyword.
This change applies to all property types not just boolean.