{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.macOSLobApp", "title": "microsoft.graph.macOSLobApp", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.mobileLobApp" }, { "title": "macOSLobApp", "required": [ "@odata.type" ], "type": "object", "properties": { "buildNumber": { "type": "string", "description": "The build number of the package. This should match the package CFBundleShortVersionString of the .pkg file.", "nullable": true }, "bundleId": { "type": "string", "description": "The primary bundleId of the package.", "nullable": true }, "childApps": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.macOSLobChildApp" }, "description": "List of ComplexType macOSLobChildApp objects. Represents the apps expected to be installed by the package." }, "ignoreVersionDetection": { "type": "boolean", "description": "When TRUE, indicates that the app's version will NOT be used to detect if the app is installed on a device. When FALSE, indicates that the app's version will be used to detect if the app is installed on a device. Set this to true for apps that use a self update feature. The default value is FALSE." }, "installAsManaged": { "type": "boolean", "description": "When TRUE, indicates that the app will be installed as managed (requires macOS 11.0 and other managed package restrictions). When FALSE, indicates that the app will be installed as unmanaged. The default value is FALSE." }, "md5Hash": { "type": "array", "items": { "type": "string", "nullable": true }, "description": "The MD5 hash codes. This is empty if the package was uploaded directly. If the Intune App Wrapping Tool is used to create a .intunemac, this value can be found inside the Detection.xml file." }, "md5HashChunkSize": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "The chunk size for MD5 hash. This is '0' or empty if the package was uploaded directly. If the Intune App Wrapping Tool is used to create a .intunemac, this value can be found inside the Detection.xml file.", "format": "int32" }, "minimumSupportedOperatingSystem": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.macOSMinimumOperatingSystem" }, { "type": "object", "nullable": true } ], "description": "ComplexType macOSMinimumOperatingSystem that indicates the minimum operating system applicable for the application." }, "versionNumber": { "type": "string", "description": "The version number of the package. This should match the package CFBundleVersion in the packageinfo file.", "nullable": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.macOSLobApp" } }, "description": "Contains properties and inherited properties for the macOS LOB App." } ], "x-ms-discriminator-value": "#microsoft.graph.macOSLobApp" }