{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.managedAppDataStorageLocation", "title": "managedAppDataStorageLocation", "enum": [ "oneDriveForBusiness", "sharePoint", "box", "localStorage" ], "type": "string", "description": "The storage locations where managed apps can potentially store their data.", "x-ms-enum": { "name": "managedAppDataStorageLocation", "modelAsString": false, "values": [ { "value": "oneDriveForBusiness", "description": "Indicates allowed storage location for the managed app to save files is 'OneDrive for Business'.", "name": "oneDriveForBusiness" }, { "value": "sharePoint", "description": "Indicates allowed storage location for the managed app to save files is 'Sharepoint'.", "name": "sharePoint" }, { "value": "box", "description": "Indicates that the allowed storage location for a managed app to save files is to 'Box'. Box is a non-Microsoft solution that enables cloud-based file storage capabilities.", "name": "box" }, { "value": "localStorage", "description": "Indicates allowed storage location for the managed app to save files is local storage on the device.", "name": "localStorage" } ] } }