Last active
March 4, 2023 09:22
-
-
Save colorenz/5b8bb4b08cfff7e0c81f630ad21a9584 to your computer and use it in GitHub Desktop.
Think-cell Jamf json Schema Manifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "Think-cell Settings", | |
"description": "Configuration settings for the Think-cell application. Preference Domain is com.microsoft.office. Docs https://www.think-cell.com/en/resources/manual/deploymentguide#subsect_mdmmacos", | |
"type": "object", | |
"properties": { | |
"com.think-cell.settings.licensekey": { | |
"type": "string", | |
"description": "The license key for Think-cell" | |
}, | |
"com.think-cell.settings.updates": { | |
"type": "object", | |
"description": "Settings related to Think-cell updates", | |
"properties": { | |
"enabled": { | |
"type": "boolean", | |
"description": "Whether or not Think-cell updates are enabled" | |
}, | |
"url": { | |
"type": "string", | |
"description": "The URL for Think-cell updates" | |
} | |
} | |
}, | |
"com.think-cell.settings.nofirststart": { | |
"type": "object", | |
"description": "Settings related to first start of Think-cell", | |
"properties": { | |
"enabled": { | |
"type": "boolean", | |
"description": "Whether or not the 'First Start' dialog is enabled" | |
} | |
} | |
}, | |
"com.think-cell.settings.reports": { | |
"type": "object", | |
"description": "Settings related to Think-cell reporting", | |
"properties": { | |
"enabled": { | |
"type": "boolean", | |
"description": "Whether or not Think-cell reporting is enabled" | |
} | |
} | |
}, | |
"com.think-cell.settings.support": { | |
"type": "object", | |
"description": "Settings related to Think-cell support", | |
"properties": { | |
"email": { | |
"type": "string", | |
"description": "The email address for Think-cell support" | |
} | |
} | |
}, | |
"com.think-cell.settings.defaultstyle": { | |
"type": "string", | |
"description": "The default style for Think-cell" | |
}, | |
"com.think-cell.settings.stockimages": { | |
"type": "object", | |
"description": "Settings related to Think-cell stock images", | |
"properties": { | |
"DisableCanto": { | |
"type": "boolean", | |
"description": "Whether or not the Canto stock image source is disabled" | |
}, | |
"DisableGetty": { | |
"type": "boolean", | |
"description": "Whether or not the Getty stock image source is disabled" | |
}, | |
"DisablePexels": { | |
"type": "boolean", | |
"description": "Whether or not the Pexels stock image source is disabled" | |
}, | |
"DisableUnsplash": { | |
"type": "boolean", | |
"description": "Whether or not the Unsplash stock image source is disabled" | |
}, | |
"DisableBrandfolder": { | |
"type": "boolean", | |
"description": "Whether or not the Brandfolder stock image source is disabled" | |
}, | |
"BrandfolderAPIKey": { | |
"type": "string", | |
"description": "The API key for the Brandfolder stock image source" | |
}, | |
"HideBrandfolderCollections": { | |
"type": "integer", | |
"description": "Whether or not to hide collections in the Brandfolder stock image source" | |
}, | |
"HideBrandfolderSections": { | |
"type": "integer", | |
"description": "Whether or not to hide sections in the Brandfolder stock image source" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment